 /* Estilos Generales */
 body {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(222, 239, 255, 0.8));
    backdrop-filter: blur(8px);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.login-header h2 {
    color: #0d6efd;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
}

.login-header p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 25px;
}

.form-control {
    background: #f8f9fa;
    border: 1px solid #d6d8db;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.btn-custom {
    background-color: #0d6efd;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover {
    background-color: #084ecb;
    transform: translateY(-2px);
}

.forgot-password {
    color: #0d6efd;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-top: 15px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.register-link {
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
}

.register-link a {
    color: #0d6efd;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}