/* Login Page Styles - EBERNET Theme */
body.login-page {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}

.login-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.logo-login {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1); /* Hace el logo blanco */
}

.login-header h3 {
    font-weight: 600;
}

.login-body {
    padding: 40px;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #3b82f6;
}

.form-control {
    border-left: none;
}

.alert {
    border-radius: 10px;
    border: none;
}

/* Footer styles */
.login-card .text-muted strong {
    color: #1e3a8a;
    font-weight: 700;
}