/* ======================= */
/* ESTILOS GERAIS LOGIN    */
/* ======================= */

.login-page {
    /* background: linear-gradient(135deg, #0d3e6e 0%, #1a5276 100%); */
    background: #4d4d4d;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

/* Container central */
.login-container {
    width: 100%;
    max-width: 450px;
    /* background: rgba(255, 255, 255, 0.15); */
    background: rgb(11 22 61); 
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.4s ease;
}

/* Animação de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Título */
.login-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
}

/* Logo */
.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.login-logo img {
    width: 300px;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.3));
}

/* =============================== */
/* ESTILO DOS INPUTS MODERNOS      */
/* =============================== */

.login-container label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.login-container input.form-control {
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    color: #000 !important;
    border: 1px solid #ccc !important;
    font-size: 15px;
    padding-left: 15px;
    transition: 0.2s;
}

/* Foco */
.login-container input.form-control:focus {
    border-color: #0d3e6e !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 62, 110, 0.35) !important;
    background: #fff !important;
}

/* Input com erro */
.login-container .is-invalid {
    border-color: #dc3545 !important;
}

/* Textos de erro */
.invalid-feedback {
    color: #ffdddd !important;
    font-size: 13px;
}

/* =============================== */
/* BOTÃO LOGIN                     */
/* =============================== */

.login-container button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    height: 48px;
    border-radius: 10px;
    background: #0d3e6e;
    border: none;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    transition: 0.25s;
}

.login-container button[type="submit"]:hover {
    background: #0b3560;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

/* =============================== */
/* ALERTA DE ERRO                  */
/* =============================== */

.alert-login {
    background: rgba(255, 50, 50, 0.35);
    border-left: 5px solid #ff4444;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}
