/* styles.css */
body {
    font-family: Arial, sans-serif;
    background: url("../img/back.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: rgb(255, 255, 255);
    width: 380px;
    padding: 100px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.55);
    text-align: center;
    height: 400px;
}

.login-section{
    padding: 7px;
}
.header {
    display: flex;
    align-items: center;
    padding-bottom: 7px;
    border-bottom: 1px solid #ddd;
}

.star {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
}

.header img {
    height: 68px; 
    margin-left: 34px;
}

.user-icon {
    font-size: 45px;
    color: #003366;
    margin-top: 15px;
}

.login-title {
    font-size: 22px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

form {
    margin-top: 25px;
    text-align: left;
}

label {
    text-align: center;
    font-size: 15px;
    color: #666;
    display: block;
    margin-bottom: 6px;
}

input[type="text"] {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.remember-section {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.remember-section input {
    margin-right: 6px;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.avancar {
    background: #ccc;
    color: white;
    font-weight: bold;
    cursor: not-allowed;
}


.voltar {
    background: none;
    color: #003366;
    font-weight: bold;
}




.modal-codigo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8); 
    display: none;  
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0; /* Para animação suave */
    transition: opacity 0.2s ease-in-out; /* Transição mais rápida */
}

.modal-codigo.show {
    display: flex;
    opacity: 1; 
}


.modal-box {
    background: white;
    padding: 20px;
    height: 21%;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out; 
}

/* Efeito hover no botão */
.modal-box button {
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 10px;
    background-color: #aed658;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease; /* Adicionando efeito de transformação */
}

.modal-box button:hover {
    background-color: #99b83e;
    transform: scale(1.05); /
}

/* Animação fadeIn */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.modal-box h3 i {
    margin-right: 10px;
    color: #aed658; /* Cor do ícone */
}

/* Ajustando o ícone do botão */
.modal-box button i {
    margin-right: 8px;
}

/* Efeito hover no botão */
.modal-box button:hover {
    background-color: #99b83e;
    transform: scale(1.05);
}