
        /* Same CSS as provided in the original register.php */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary-color: #0f0f0f;
            --secondary-color: #1f1f1f;
            --accent-color: #ff4d4d;
            --accent-hover: #ff3333;
            --text-color: #f1f1f1;
            --text-secondary: #b3b3b3;
            --glass-color: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --header-height: 70px;
            --weak-color: #ff4d4d;
            --medium-color: #ffcc4d;
            --strong-color: #4dff4d;
            --error-color: #ff6b6b;
            --success-color: #6bcf7f;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 1rem;
            margin: 0;
            overflow-y: auto;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,77,77,0.1) 0%, rgba(255,77,77,0) 70%);
            animation: float 15s infinite linear;
            opacity: 0.3;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Register Container */
        .register-container {
            background: rgba(31, 31, 31, 0.95);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            padding: 2rem 2.5rem;
            width: 100%;
            max-width: 450px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 77, 77, 0.2);
            animation: fadeIn 0.5s ease forwards;
            margin: 1rem 0;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .register-form h2 {
            color: var(--text-color);
            text-align: center;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .register-subtitle {
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* Form Steps */
        .form-steps {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-weight: 600;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .step-indicator.active {
            background-color: var(--accent-color);
            color: white;
        }

        .step-connector {
            height: 2px;
            background-color: rgba(255, 255, 255, 0.1);
            flex-grow: 1;
            max-width: 60px;
            position: relative;
            top: 16px;
        }

        .step-connector.active {
            background-color: var(--accent-color);
        }

        /* Form Groups */
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }

        .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--text-color);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .input-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-group i:first-child {
            position: absolute;
            left: 1rem;
            color: var(--text-secondary);
            font-size: 1rem;
            z-index: 2;
        }

        .input-group input {
            width: 100%;
            padding: 0.9rem 3rem 0.9rem 2.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(0, 0, 0, 0.3);
            color: var(--text-color);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
        }

        .password-toggle {
            position: absolute;
            right: 1rem;
            color: var(--text-secondary);
            font-size: 1rem;
            cursor: pointer;
            z-index: 2;
        }

        /* Password Strength Meter */
        .password-strength {
            margin-top: 0.5rem;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .password-strength-bar {
            height: 100%;
            width: 0;
            transition: var(--transition);
        }

        .password-strength-text {
            font-size: 0.8rem;
            margin-top: 0.3rem;
            color: var(--text-secondary);
            text-align: right;
        }

        /* Form Buttons */
        .form-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }

        .form-btn {
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-next {
            background-color: var(--accent-color);
            color: white;
            flex-grow: 1;
        }

        .btn-next:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
        }

        .btn-prev {
            background-color: transparent;
            color: var(--text-secondary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-right: 1rem;
        }

        .btn-prev:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
        }

        .btn-submit {
            background-color: var(--accent-color);
            color: white;
            width: 100%;
        }

        .btn-submit:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
        }

        .loader {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .form-btn[disabled] {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .resend-link {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: 1rem;
            display: inline-block;
            transition: var(--transition);
        }

        .resend-link:hover {
            text-decoration: underline;
        }

        .resend-link[disabled] {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .register-footer {
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .register-footer a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .register-footer a:hover {
            text-decoration: underline;
        }

        /* Error and Success Messages */
        .error-message {
            background-color: #2d1b1b;
            border: 1px solid var(--error-color);
            border-radius: 8px;
            padding: 12px 16px;
            margin: 10px 0;
            color: var(--error-color);
            font-size: 0.85rem;
            line-height: 1.5;
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
            position: relative;
            animation: slideIn 0.3s ease-out;
            display: none;
        }

        .error-message::before {
            content: "⚠️";
            margin-right: 8px;
            font-size: 14px;
        }

        .success-message {
            background-color: #1b2d1b;
            border: 1px solid var(--success-color);
            border-radius: 8px;
            padding: 12px 16px;
            margin: 10px 0;
            color: var(--success-color);
            font-size: 0.85rem;
            line-height: 1.5;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.1);
            position: relative;
            animation: slideIn 0.3s ease-out;
            display: none;
        }

        .success-message::before {
            content: "✅";
            margin-right: 8px;
            font-size: 14px;
        }

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

        /* Google login button styles */
        .google-login-btn {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 77, 77, 0.8);
            border-radius: 50px;
            background-color: transparent;
            color: rgba(255, 77, 77, 0.9);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
            text-decoration: none;
        }

        .google-login-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
            color: white;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .divider::before {
            margin-right: 1rem;
        }

        .divider::after {
            margin-left: 1rem;
        }

        /* Responsive Styles */
        @media (max-width: 480px) {
            .register-container {
                padding: 1.5rem;
                margin: 0.5rem 0;
            }

            .register-form h2 {
                font-size: 1.5rem;
            }

            .input-group input {
                padding: 0.8rem 2.8rem 0.8rem 2.3rem;
            }

            .form-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }

            .btn-prev {
                margin-right: 0;
                margin-bottom: 0.5rem;
            }
        }