        /* 
        SEO Repair Kit Get Started Page Styles
         */
        .srk-get-started-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            text-align: center;
        }

        .srk-form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .srk-form {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            justify-content: center;
            flex-wrap: wrap;
        }

        .srk-input-wrapper {
            flex: 1;
            min-width: 300px;
        }

        .srk-input-field {
            width: 100%;
            padding: 14px 18px;
            font-size: 16px;
            line-height: 1.5;
            color: #0f172a;
            background-color: #f1f5f9;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
            transition: all 0.2s ease;
            box-sizing: border-box;
        }

        .srk-input-field:focus {
            background-color: #ffffff;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .srk-input-field::placeholder {
            color: #94a3b8;
        }

        .srk-submit-button {
            padding: 12px 32px;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            background-color: #F28500;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            min-width: 140px;
            margin-top: 0px;
        }

        .srk-submit-button:hover {
            background-color: #0B1D51;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .srk-submit-button:active {
            transform: translateY(0);
        }

        .srk-submit-button:disabled {
            background-color: #94a3b8;
            cursor: not-allowed;
            transform: none;
        }

        .srk-error-message {
            color: #dc2626;
            font-size: 14px;
            margin-top: 12px;
            text-align: left;
            display: none;
        }

        .srk-error-message.show {
            display: block;
        }

        .srk-try-link {
            margin-top: 24px;
            font-size: 14px;
            color: #64748b;
        }

        .srk-try-link a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }

        .srk-try-link a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .srk-get-started-container {
                padding: 20px 20px;
            }

            .srk-form {
                flex-direction: column;
            }

            .srk-input-wrapper {
                min-width: 100%;
            }

            .srk-submit-button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            /* Add any additional mobile styles here */
        }
        
        .admin-bar #page {
            min-height: auto!important;
        }
