body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    .auth-wrapper {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .auth-container {
        display: flex;
        background: white;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        max-width: 1000px;
        width: 100%;
        animation: slideUp 0.5s ease-out;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .auth-left {
        flex: 1.2;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 60px 48px;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .auth-left::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
        animation: pulse 15s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    .auth-brand {
        position: relative;
        z-index: 1;
    }
    
    .brand-logo {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 32px;
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    .brand-logo i {
        font-size: 36px;
    }
    
    .auth-brand h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .auth-brand p {
        opacity: 0.9;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .auth-features {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .dc-profile .dc-social a:hover {
        opacity: 1 !important;
        transform: scale(1.1);
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 15px;
        opacity: 0.95;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }
    
    .feature-item i {
        font-size: 20px;
        opacity: 1;
        width: 24px;
        text-align: center;
    }
    
    .auth-right {
        flex: 1;
        padding: 40px 48px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: white;
    }
    
    
    .auth-form-wrapper {
        width: 100%;
        max-width: 380px;
    }
    
    .auth-form-wrapper h2 {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 6px;
    }
    
    .auth-subtitle {
        color: #64748b;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: #374151;
        margin-bottom: 6px;
    }
    
    .input-group {
        position: relative;
    }
    
    .input-group i.input-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: 18px;
        transition: color 0.2s;
        pointer-events: none;
    }
    
    .input-group .form-control:focus ~ i.input-icon {
        color: #667eea;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 44px 12px 44px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 14px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    
    .form-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    
    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #6b7280;
        cursor: pointer;
    }
    
    .checkbox-label input {
        width: 18px;
        height: 18px;
        accent-color: #667eea;
        cursor: pointer;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(102, 126, 234, 0.4);
    }
    
    .btn-primary:active {
        transform: translateY(0);
    }
    
    .auth-footer {
        text-align: center;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid #e5e7eb;
    }
    
    .auth-footer p {
        font-size: 14px;
        color: #6b7280;
        margin-bottom: 12px;
    }
    
    .auth-footer a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }
    
    .auth-footer a:hover {
        color: #764ba2;
        text-decoration: underline;
    }
    
    .forgot-link {
        font-size: 14px;
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    
    .forgot-link:hover {
        color: #764ba2;
        text-decoration: underline;
    }
    
    .input-group .toggle-password {
        z-index: 10;
    }
    
    .input-hint {
        font-size: 11px;
        color: #9ca3af;
        margin-top: 4px;
    }
    
    .alert {
        padding: 14px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        animation: shake 0.5s ease-out;
    }
    
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    
    .alert-error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }
    
    .alert-success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }
    
    @media (max-width: 1200px) {
        .dc-top-fixed {
            right: 15px;
        }
        .dc-top-fixed > div:first-child {
            width: 120px !important;
            height: 120px !important;
        }
    }
    
    @media (max-width: 900px) {
        .auth-container {
            flex-direction: column;
            max-width: 480px;
        }
        
        .auth-left {
            padding: 40px 32px;
        }
        
        .auth-brand h1 {
            font-size: 28px;
        }
        
        .auth-right {
            padding: 40px 32px;
        }
        
        .dc-top-fixed {
            display: none !important;
        }
        
        .dc-profile-center {
            margin: 4px 0 12px !important;
            padding: 12px !important;
        }
        .dc-profile-center > div:first-child {
            width: 90px !important;
            height: 90px !important;
            margin-bottom: 10px !important;
        }
    }
    
    @media (max-width: 480px) {
        .auth-wrapper {
            padding: 0;
        }
        
        .auth-container {
            border-radius: 0;
            min-height: 100vh;
        }
        
        .brand-logo {
            width: 64px;
            height: 64px;
        }
        
        .brand-logo i {
            font-size: 28px;
        }
        
        .auth-features {
            display: none;
        }
        
        .dc-profile-center {
            margin: 4px 0 8px !important;
            padding: 10px !important;
        }
        .dc-profile-center > div:first-child {
            width: 70px !important;
            height: 70px !important;
            margin-bottom: 8px !important;
        }
    }
    .is-invalid {
        border-color: #ef4444 !important;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
    }
    .is-invalid + .input-icon {
        color: #ef4444 !important;
    }
    .input-hint.error {
        color: #ef4444 !important;
        font-weight: 500;
    }
