        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #fafafa;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            line-height: 1.6;
            color: #1a1a1a;
            -webkit-font-smoothing: antialiased;
        }

        .wrapper {
            width: 100%;
            max-width: 440px;
        }

        .forgot-card {
            background: white;
            border-radius: 16px;
            border: 1px solid #e5e5e5;
            padding: 48px 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .logo-container {
            text-align: center;
            margin-bottom: 24px;
        }

        .logo {
            width: 180px;
            height: auto;
        }

        .icon-wrapper {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: #f0f9ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-wrapper i {
            color: #040669;
            width: 32px;
            height: 32px;
        }

        .page-title {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .page-description {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            color: #666;
            width: 18px;
            height: 18px;
            z-index: 1;
        }

        .form-control {
            width: 100%;
            padding: 12px 14px 12px 44px;
            font-size: 14px;
            font-family: inherit;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            transition: all 0.2s ease;
            background: #fafafa;
            color: #1a1a1a;
        }

        .form-control:hover {
            background: #fff;
            border-color: #d0d0d0;
        }

        .form-control:focus {
            outline: none;
            background: #fff;
            border-color: #040669;
            box-shadow: 0 0 0 3px rgba(4, 6, 105, 0.08);
        }

        .form-control::placeholder {
            color: #999;
        }

        /* Submit Button */
        .btn-submit {
            width: 100%;
            padding: 14px;
            background: #040669;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: -0.01em;
        }

        .btn-submit:hover {
            background: #030557;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(4, 6, 105, 0.25);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-submit i {
            width: 18px;
            height: 18px;
        }

        .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Back Link */
        .back-link {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: #666;
        }

        .back-link a {
            color: #040669;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .back-link a:hover {
            color: #030557;
            text-decoration: underline;
        }

        /* Footer */
        .footer-text {
            text-align: center;
            margin-top: 32px;
            font-size: 13px;
            color: #999;
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 1px solid #e5e5e5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .theme-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .theme-toggle i {
            color: #040669;
            width: 20px;
            height: 20px;
        }

        /* Dark Mode */
        body.dark-mode {
            background: #0f0f0f;
            color: #e5e5e5;
        }

        body.dark-mode .theme-toggle {
            background: #1a1a1a;
            border-color: #333;
        }

        body.dark-mode .theme-toggle i {
            color: #fbbf24;
        }

        body.dark-mode .forgot-card {
            background: #1a1a1a;
            border-color: #333;
        }

        body.dark-mode .page-title {
            color: #e5e5e5;
        }

        body.dark-mode .page-description {
            color: #999;
        }

        body.dark-mode .icon-wrapper {
            background: rgba(4, 6, 105, 0.1);
        }

        body.dark-mode .form-group label {
            color: #e5e5e5;
        }

        body.dark-mode .input-icon {
            color: #999;
        }

        body.dark-mode .form-control {
            background: #0f0f0f;
            border-color: #333;
            color: #e5e5e5;
        }

        body.dark-mode .form-control:hover {
            background: #1a1a1a;
            border-color: #444;
        }

        body.dark-mode .form-control:focus {
            background: #1a1a1a;
            border-color: #5b6fd8;
            box-shadow: 0 0 0 3px rgba(91, 111, 216, 0.15);
        }

        body.dark-mode .form-control::placeholder {
            color: #666;
        }

        body.dark-mode .back-link {
            color: #999;
        }

        body.dark-mode .back-link a {
            color: #5b6fd8;
        }

        body.dark-mode .back-link a:hover {
            color: #7c8fe8;
        }

        body.dark-mode .footer-text {
            color: #666;
        }

        @media (max-width: 480px) {
            .forgot-card {
                padding: 40px 28px;
            }

            .logo {
                width: 150px;
            }

            .icon-wrapper {
                width: 56px;
                height: 56px;
            }

            .icon-wrapper i {
                width: 28px;
                height: 28px;
            }
        }

