/* css/login.css */
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    margin: 0; 
}

.login-card { 
    background: #ffffff; 
    padding: 40px 30px; 
    border-radius: 12px; 
    box-shadow: 0 8px 30px rgba(0,0,0,0.08); 
    width: 100%; 
    max-width: 340px; 
    box-sizing: border-box; 
}

h2 { 
    margin: 0 0 8px 0; 
    color: #0369a1; 
    text-align: center; 
    font-size: 24px; 
}

.subtitle { 
    text-align: center; 
    color: #64748b; 
    font-size: 14px; 
    margin-bottom: 28px; 
}

label { 
    font-size: 13px; 
    color: #334155; 
    font-weight: 600; 
    display: block; 
    margin-bottom: 6px; 
    text-transform: uppercase; 
}

input { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 20px; 
    border: 1px solid #cbd5e1; 
    border-radius: 6px; 
    box-sizing: border-box; 
    font-size: 16px; 
}

.password-container { 
    position: relative; 
    width: 100%; 
}

.password-container input { 
    margin-bottom: 20px; 
    padding-right: 45px; 
}

.toggle-password { 
    position: absolute; 
    right: 12px; 
    top: 12px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.toggle-password svg { 
    width: 22px; 
    height: 22px; 
    fill: #64748b; 
}

.btn-enviar-login { 
    width: 100%; 
    padding: 14px; 
    background-color: #0284c7; 
    border: none; 
    border-radius: 6px; 
    color: #ffffff; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer; 
    box-shadow: 0 4px 6px rgba(2, 132, 199, 0.1);
    transition: background 0.2s;
    display: block;
}

.btn-enviar-login:hover { 
    background-color: #0369a1; 
}

.error-msg-login { 
    color: #b91c1c; 
    background-color: #fee2e2; 
    padding: 12px; 
    border-radius: 6px; 
    font-size: 14px; 
    text-align: center; 
    margin-bottom: 20px; 
    border: 1px solid #fca5a5; 
}
