body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Barra de Navegacao */
nav.barra_horizontal {
    display: flex;
    top: 0%;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 73px;
    z-index: 10;
    background-color: white;
}
ul {
    list-style: none;
}
ul a {
    text-decoration: none;
    color: white;
    font-size: 17px;
}

/* Logotipo */
#logogeral {
    display: flex;
}
#logo img {
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    margin-left: -90px;
    margin-right: -500px;
    margin-top: 10px;
    object-fit: cover;
    /* border: 2px solid red; */
}
/* LogoLx */
#logoLx img {
    align-items: center;
    justify-content: center;
    object-fit: cover;
    width: 50px;
    height: 50px;
    margin-top: 10px;
    margin-left: -100px;
    /* border: 2px solid red; */
}

#logoLx li:hover {
    text-decoration: none;
}
/* cadastro */
.form-container {
    margin-left: 30%;
    margin-top: 3%;
    padding: 70px;
    box-shadow: 0 0 10px rgba(7, 7, 7, 0.1);
    width: 400px;

}
.form-container h2 {
    color: black;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin: 8px 0;
}
.form-container input {
    width: 80%;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
}
button {
    width: 25%;
    margin-left: 40%;
    padding: 10px;
    background-color: rgb(233, 169, 132);
    font-size: 15px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #dd5d08;
}
.log {
    color: black;
    font-size: 1em;
}
.log a {
    text-decoration: none;
    color: rgb(13, 13, 180);
    font-weight: bold;
    font-size: 1em;
}
.log a:hover {
    text-decoration: underline;
}
/* Erro */
.erro {
  color: red;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  text-align: center;
  margin-bottom: 10px;

}


.checkbox-termos {
    width: 80%;
    display: flex; 
    align-items: center; 
    margin: 10px 0;
}
.checkbox-termos a {
    text-decoration: underline;
    color: rgb(77, 77, 235);
    list-style: underline;
}
.checkbox-termos input {
    margin-left: -40px;
}
.checkbox-termos label {
    margin-left: -0px;
}
.erro {
    background: #f8d7da; 
    color: #721c24; 
    padding: 10px;
    margin-bottom: 15px; 
    border: 1px solid #f5c6cb; 
    border-radius: 5px;
}


select {
    width: 88%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
}

option {
    font-size: 16px;
}


.erro-campo {
    color: red;
    font-size: 0.85em;
    margin-top: 2px;
    display: block;
}


/* Estilos para o reCAPTCHA */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    transform: scale(0.9);
    transform-origin: 0 0;
}

.g-recaptcha > div {
    margin: 0 auto;
}

/* Estilos para mensagens de erro */
.erro-campo {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.erro-campo:not(:empty) {
    display: block;
}

/* Estilos para o toggle de senha */
.senha-wrapper {
    position: relative;
}

.toggle-senha {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

/* Estilos para o formulário */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.checkbox-termos {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-termos input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-termos label {
    font-size: 14px;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.8);
    }
    
    .form-container {
        padding: 15px;
    }
}


.alert {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}