.form-group input, .form-group textarea {padding-left: 40px!important;}
        
    .login-container {
        width: 100%;
        max-width: 420px;
        animation: slideUp 0.5s ease-out;
            margin: 0 auto;
    }
        
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
        
    .login-box {
        width: 100%;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
        
    .login-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 32px 24px;
        text-align: center;
        color: white;
        position: relative;
    }
        
    .login-header h1 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
        
    .login-header p {
        margin-top: 8px;
        opacity: 0.9;
        font-size: 14px;
    }
        
    .login-body {
        padding: 32px;
    }
        
    .alert {
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
        
    .alert-error {
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #991b1b;
    }
        
    .alert-success {
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        color: #166534;
    }
        
    .alert-info {
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        color: #1e40af;
    }
        
    .alert i {
        font-size: 18px;
        flex-shrink: 0;
    }
        
    .form-group {
        margin-bottom: 20px;
    }
        
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #374151;
        font-size: 14px;
    }
        
    .input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
        
    .input-wrapper > i:first-child {
        position: absolute;
        left: 14px;
        color: #9ca3af;
        font-size: 16px;
        z-index: 2;
        pointer-events: none;
    }
        
    .form-control {
        width: 100%;
        height: 48px;
        padding: 0 44px 0 44px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s;
        background: #f9fafb;
        color: #374151;
    }
        
    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
        
    .form-control:focus + i,
    .input-wrapper:focus-within > i:first-child {
        color: var(--primary-color);
    }
        
    .password-toggle {
        position: absolute;
        right: 12px;
        background: none;
        border: none;
        color: #9ca3af;
        cursor: pointer;
        font-size: 16px;
        padding: 8px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s;
        z-index: 2;
    }
        
    .password-toggle:hover {
        color: var(--primary-color);
    }
        
    .remember-me {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        cursor: pointer;
        font-size: 14px;
        color: #4b5563;
        user-select: none;
    }
        
    .remember-me input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary-color);
        cursor: pointer;
        flex-shrink: 0;
    }
        
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 48px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        gap: 8px;
    }
        
    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }
        
    .divider {
        display: flex;
        align-items: center;
        margin: 24px 0;
        color: #9ca3af;
        font-size: 13px;
    }
        
    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }
        
    .divider span {
        padding: 0 16px;
    }
        
    .social-login {
        display: flex;
        gap: 12px;
        margin-bottom: 24px;
    }
        
    .social-btn {
        flex: 1;
        height: 44px;
        border: 1px solid #e5e7eb;
        background: white;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #374151;
    }
        
    .social-btn:hover {
        border-color: var(--primary-color);
        background: #f9fafb;
    }
        
    .social-btn i {
        font-size: 18px;
    }
        
    .links-container {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }
        
    .link {
        color: #667eea;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s;
    }
        
    .link:hover {
        color: var(--primary-hover);
        text-decoration: underline;
    }
        
    @media (max-width: 480px) {
        body {
            padding: 16px;
            background: #ffffff;
        }
            
        .login-box {
            box-shadow: none;
        }
            
        .login-body {
            padding: 24px 20px;
        }
            
        .login-header h1 {
            font-size: 24px;
        }
            
        .social-login {
            flex-direction: column;
        }
    }
