body {
    background: #f4f2fb;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1e1b3a;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-header {
    background: linear-gradient(135deg, hsl(256, 72%, 58%) 0%, hsl(280, 60%, 55%) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-5deg);
}

.login-brand-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.login-body {
    padding: 2rem;
    background: white;
}

/* Formularios */
.form-floating>.form-control {
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    height: auto;
    font-size: 1rem;
    border: 2px solid transparent !important;
    transition: all 0.2s;
    background-color: #f8fafc !important;
}

.form-floating>.form-control:focus {
    background-color: #fff !important;
    border-color: hsl(256, 72%, 58%) !important;
    box-shadow: 0 0 0 0.25rem hsla(256, 72%, 58%, 0.2) !important;
}

.form-floating>label {
    padding: 1rem 1.25rem;
}

/* Botones */
.btn-primary {
    background: linear-gradient(135deg, hsl(256, 72%, 58%) 0%, hsl(280, 60%, 55%) 100%);
    border: none;
    border-radius: 0.75rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, hsl(256, 72%, 48%) 0%, hsl(280, 60%, 45%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px hsla(256, 72%, 58%, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Utilidades */
.transition-all {
    transition: all 0.2s ease;
}

/* Animaciones */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}b o d y   {   b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ;   }  
 