
        :root {
            --primary-color: #1E8948;
            --primary-hover: #18723b;
            --bg-color: #fafafa;
            --text-main: #111827;
            --text-muted: #6b7280;
            --border-color: #e5e7eb;
            --font-family: 'DM Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-family);
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
        }

        .login-card {
            background-color: #ffffff;
            width: 100%;
            padding: 40px 30px;
            border-radius: 24px;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
        }

        @media (min-width: 640px) {
            .login-card {
                padding: 50px 40px;
            }
        }

        .logo-container {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .brand-logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -1px;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .page-title {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 24px;
        }
        
        .page-subtitle {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            outline: none;
            transition: all 0.2s;
            color: var(--text-main);
            box-shadow: none;
        }

        .form-input::placeholder {
            color: #9ca3af;
        }

        .form-input:focus {
            border-color: var(--primary-color);
        }

        .scp-btn {
            width: 100%;
            cursor: pointer;
            font-size: 16px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 38px;
            text-align: center;
            letter-spacing: .6px;
            font-weight: 600;
            position: relative;
            background-color: #1E8948;
            color: #fff;
            border: 0;
            box-shadow: 
                inset -2px -2px 1.4px #13461b,
                inset 1px 1px 1.4px #2ca35c;
            transition: transform .08s ease, box-shadow .08s ease;
            min-height: 48px;
            text-decoration: none;
        }

        .scp-btn:active {
            transform: translateY(2px);
            box-shadow: 
                inset -2px -2px 1.4px #13461b,
                inset 1px 1px 1.4px #2ca35c;
        }

        .btn-text {
            transition: opacity 0.2s;
        }
        
        .btn-loader {
            display: none;
            width: 22px;
            height: 22px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s linear infinite;
            position: absolute;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .scp-btn.loading {
            pointer-events: none;
        }
        
        .scp-btn.loading .btn-text {
            opacity: 0;
            visibility: hidden;
        }
        
        .scp-btn.loading .btn-loader {
            display: block;
        }

        .back-link {
            display: block;
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }

        .back-link:hover {
            color: var(--primary-hover);
        }

        .success-container {
            display: none; /* Hidden by default */
            text-align: center;
            padding: 20px 0;
            animation: fadeIn 0.4s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .success-icon {
            font-size: 64px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .success-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 30px;
        }

  