
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            min-height: 100vh;
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 60px 50px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            width: 100%;
            max-width: 480px;
            position: relative;
        }

        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--hover-orange));
            border-radius: 20px 20px 0 0;
        }

        .brand-logo {
            text-align: center;
            margin-bottom: 40px;
        }

        .brand-logo h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .brand-logo .logo-accent {
            color: var(--primary-orange);
        }

        .brand-logo p {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 0;
        }

        .form-group {
            margin-bottom: 28px;
            position: relative;
        }

        .form-label {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.9rem;
            display: block;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .input-wrapper {
            position: relative;
        }

        .form-control {
            background: var(--darker-bg);
            border: 2px solid var(--border-color);
            /* padding: 18px 24px; */
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 58px;
            width: 100%;
            line-height: 1.5;
            outline: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .form-control:hover {
            border-color: rgba(255, 107, 53, 0.6);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .form-control:focus {
            background: var(--darker-bg);
            border-color: var(--primary-orange);
            box-shadow:
                0 0 0 4px rgba(255, 107, 53, 0.12),
                0 8px 25px rgba(0, 0, 0, 0.2);
            color: var(--text-primary);
            transform: translateY(-1px);
        }

        .form-control::placeholder {
            color: var(--text-secondary);
            font-weight: 400;
            opacity: 0.8;
        }

        .form-control:valid {
            border-color: #10b981;
        }

        .form-control:invalid:not(:placeholder-shown) {
            border-color: #ef4444;
        }

        /* Input Icons */
        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            font-size: 1.1rem;
            pointer-events: none;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .form-control:focus+.input-icon,
        .form-control:not(:placeholder-shown)+.input-icon {
            color: var(--primary-orange);
        }

        .has-icon .form-control {
            padding-left: 54px;
        }

        .password-toggle {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 8px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            z-index: 3;
        }

        .password-toggle:hover {
            color: var(--primary-orange);
            background: rgba(255, 107, 53, 0.1);
        }

        .password-field {
            position: relative;
        }

        .password-field .form-control {
            padding-right: 60px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--hover-orange));
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            height: 58px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            background: linear-gradient(135deg, var(--hover-orange), #ff9f42);
        }

        .btn-primary:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:focus {
            box-shadow:
                0 4px 15px rgba(255, 107, 53, 0.3),
                0 0 0 4px rgba(255, 107, 53, 0.2);
        }

        .btn-text {
            position: relative;
            z-index: 2;
        }

        .form-check {
            margin: 28px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .form-check-input {
            background: var(--darker-bg);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            width: 22px;
            height: 22px;
            margin: 0;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-check-input:hover {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

        .form-check-input:checked {
            background: var(--primary-orange);
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }

        .form-check-input:focus {
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
        }

        .form-check-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            user-select: none;
        }

        .forgot-password {
            text-align: center;
            margin: 24px 0;
        }

        .forgot-password a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: var(--hover-orange);
        }


        .social-login {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }

        .btn-social {
            flex: 1;
            padding: 12px;
            border: 2px solid var(--border-color);
            background: var(--darker-bg);
            color: var(--text-primary);
            border-radius: 12px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-social:hover {
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .signup-link {
            text-align: center;
            color: var(--text-secondary);
        }

        .signup-link a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
        }

        .signup-link a:hover {
            color: var(--hover-orange);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .login-card {
                padding: 40px 30px;
                margin: 20px;
                border-radius: 16px;
            }

            .brand-logo h1 {
                font-size: 2rem;
            }

            .social-login {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 30px 20px;
            }

            .brand-logo h1 {
                font-size: 1.8rem;
            }
        }

        /* Loading Animation */
        .loading .btn-primary {
            opacity: 0.8;
            pointer-events: none;
            background: linear-gradient(135deg, #cc5429, #cc5429);
        }

        .loading .btn-primary .fa-spinner {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Error States */
        .error-message {
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Success States */
        .form-control.success {
            border-color: #10b981 !important;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
        }

        .form-control.error {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
        }

        /* Input Focus Effects */
        .form-control:focus+.floating-label,
        .form-control:not(:placeholder-shown)+.floating-label {
            transform: translateY(-28px) scale(0.9);
            color: var(--primary-orange);
        }

        .floating-label {
            position: absolute;
            left: 20px;
            top: 16px;
            color: var(--text-secondary);
            pointer-events: none;
            transition: all 0.3s ease;
            background: var(--darker-bg);
            padding: 0 4px;
        }