/* Estilos personalizados para el login */
.login-page {
    background: #f5f5f5; /* Light gray background */
    height: 100vh;
}

.login-card-body, .register-card-body {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
}

.login-logo a, .register-logo a {
    color: #333;
    font-weight: 600;
    text-shadow: none;
}

.btn-primary {
    background-color: #1a2a6c;
    border-color: #1a2a6c;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0d1b4a;
    border-color: #0d1b4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
    height: auto;
}

.input-group-text {
    border-radius: 0 5px 5px 0;
}

.login-welcome h4 {
    color: #1a2a6c;
    font-weight: 500;
}

.auth-links a {
    color: #1a2a6c;
    transition: all 0.3s;
}

.auth-links a:hover {
    color: #0d1b4a;
    text-decoration: none;
}

.text-center {
    text-align: center;
}