body {
    font-family: 'Comfortaa', sans-serif;
    background-color: #c8c8ca;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

.container {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgb(89, 89, 89);
    position: fixed;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgb(89, 89, 89);
}

.header {
    background-color: #231F20;
    padding: 20px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.header img {
    width: 100%;
    object-fit: cover;
    max-height: 250px;
    max-width: 350px;
    margin-bottom: -20px;
}

.form {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.form-content label{
    text-align: center;
    font-weight: bolder;
}


.form-content {
    text-align: center;
}

.form-content h2 {
    margin: 10px 0 22px 0;
    font-weight: bolder;
    font-size: 28px;
}

.form-content.error input {
    border-color: red;
}

/*  mensagem de erro alternativa

.form-content.error a {
    color: red;
    margin-bottom: -3px;
    visibility: visible;
} */
.titulo{
    text-align: center;
}

.login-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.login-form-content label{
    font-size: 16px;
}

.login-form-content h2 {
    margin: 10px 0 25px 0;
    font-weight: bolder;
    font-size: 24px;
}


.radio-group {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 0px;
}

.radio-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: lighter;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;

}

.radio-option img, .radio-option label {
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-option label{
    margin-bottom: 0px;
}

.radio-option img {
    max-width: 60px;
    transition: transform 0.2s ease;
}

.radio-option input[type="radio"]{
    display: none;
}


.radio-option input[type="radio"]:checked +img{
    transform: scale(1.15);
    transform-origin: 30px top;
    image-rendering: url("overlay.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover

}


.radio-option img:hover {
    transform: scale(1.1);

}

.radio-option:hover {
    color: #3e3e3e;
    transform: scale(1.1);
}


input[type="text"] {
width: 100%;
max-width: 340px;
padding: 10px;
margin: 5px 0 15px 0;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #666;
}

input[type="password"] {
    width: 100%;
    max-width: 340px;
    padding: 10px;
    margin: 5px 0 15px 0;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
    }
    
    input[type="password"]:focus {
        border-color: #666;
    }

button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #231F20;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: -5px;
}

button[type="submit"]:hover {
    background-color: rgb(25, 68, 25);
}

/*  PODE SER QUE EU MUDE A MENSAGEM DE ERRO E PRECISE DESSE GURIZAO
    .form-content a {
    font-size: 12px;
    display: block;
    margin-top: 20px;
    visibility: hidden;
    margin-bottom: -18px;
} */

#error-message-1 {
    color: red;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    display: none;
    margin-bottom: 10px;
}

#error-message-2 {
    color: red;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    display: none;
    margin-bottom: 15px;
}

#message-container {
    margin: 10px 0 20px 0;
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    justify-content: center;
    display: block;
    align-items: center;
    font-weight: 400;
}

#login-message-container {
    margin: 10px 20px 20px 20px;
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    justify-content: center;
    display: block;
    align-items: center;
    font-weight: 400;
}


.success-message {
    color: green;
}

.error-message-global {
    color: red;
}

/* span {
    margin-bottom: 20px;
    color: red;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    margin-top: 5px;
    display: block;
} */

#satisfaction{
    margin-top: 15px;
    margin-bottom: 15px;
}

#satisfaction-2 {
    margin-top: 15px;
    margin-bottom: 20px;
}

