/* ========================== */
/* ESTILO DA TELA DE LOGIN */
/* ========================== */
body {
    background: #1A237E; /* Azul Marinho */
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container principal do login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

/* Caixa de login */
.login-box {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

/* Logo */
.login-logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Estilização dos inputs */
.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: bold;
    color: #1A237E; /* Azul Marinho */
    margin-bottom: 5px;
}

.input-group i {
    margin-right: 5px;
}

/* Campos de entrada */
.input-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

/* Botão de login */
.login-button {
    width: 100%;
    padding: 10px;
    background: #1A237E; /* Azul Marinho */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.login-image {
    height: 50px;
    margin-bottom: 20px;
}

.login-button:hover {
    background: #0D1A63; /* Azul mais escuro no hover */
}

/* Mensagem de erro */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}



/* ======================== */
/* Estilização do Link de Registro */
/* ======================== */
.register-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.register-link a {
    color: #1A237E; /* Cor padrão do seu painel */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.register-link a:hover {
    color: #146c5a; /* Tom mais escuro ao passar o mouse */
    text-decoration: underline;
}


/* ========================== */
/* ESTILO DA TELA DE LOGIN - MOBILE */
/* ========================== */
/* ========================== */
/* ESTILO DA TELA DE LOGIN - MOBILE */
/* ========================== */
@media (max-width: 480px) {
    body {
        background: #1A237E;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
        overflow: hidden; /* Desativa o scroll */
    }

    /* Ajuste do container principal */
    .login-container {
        width: 90%;
        max-width: 100%;
        padding: 20px;
        position: relative;
        bottom: 50px; /* Subindo um pouco */
    }

    /* Caixa de login responsiva */
    .login-box {
        padding: 30px;
        width: 100%;
        max-width: 350px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    /* Ajuste da logo */
    .login-logo {
        width: 120px;
        margin-bottom: 15px;
    }

    /* Campos de entrada ajustados */
    .input-group input {
        padding: 12px;
        border-radius: 5px;
        font-size: 14px;
        width: 90%;
    }

    /* Botão de login responsivo */
    .login-button {
        padding: 12px;
        font-size: 14px;
        width: 90%;
    }

    /* Mensagem de erro menor */
    .error-message {
        font-size: 12px;
    }

    /* Link de registro ajustado */
    .register-link {
        font-size: 12px;
    }
}
