/* body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #394991;
}

.form-login {
    flex-basis: 450px;
}

.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
} */

/* Fundo principal */
body {
    background: linear-gradient(135deg, #6A1B9A, #2196F3);
    font-family: 'Roboto', sans-serif;
    color: #424242;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Caixa de login */
.login-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Título */
.login-box h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, #FFD600, #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Campos de texto */
.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #F5F5F5;
    outline: none;
    transition: all 0.3s ease;
}

.login-box input[type="text"]:focus,
.login-box input[type="password"]:focus {
    border: 1px solid #64FFDA;
    box-shadow: 0 0 8px #64FFDA;
}

/* Botão de login */
.login-box button {
    background: linear-gradient(135deg, #00C853, #00BFA5);
    border: none;
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.login-box button:hover {
    background: linear-gradient(135deg, #00E676, #00C853);
    transform: scale(1.05);
}

/* Ícone do olho (para mostrar/ocultar senha) */
.login-box .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #424242;
    transition: color 0.3s ease;
}

.login-box .eye-icon:hover {
    color: #00BFA5;
}

/* Alinhar a caixa de login */
.container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
}


#mostrar_senha {
    border: none;
    background-color: transparent;
}