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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            padding: 20px 0;
        }

        .register-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
            padding: 48px;
            width: 100%;
            max-width: 500px;
        }

        .register-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .register-title {
            font-size: 28px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .register-subtitle {
            font-size: 14px;
            color: #6b7280;
        }

        .form-row {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 24px;
        }

        .form-group.full-width {
            flex: none;
            width: 100%;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 6px;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 16px;
            color: #1a1a1a;
            transition: border-color 0.2s ease;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-input::placeholder {
            color: #9ca3af;
        }

        .form-select {
            cursor: pointer;
        }

        .register-btn {
            width: 100%;
            padding: 12px;
            background: #1a1a1a;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .register-btn:hover {
            background: #374151;
        }

        .register-btn:active {
            background: #111827;
        }

        .error-message {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #dc2626;
            padding: 12px 16px;
            border-radius: 6px;
            font-size: 14px;
            margin-bottom: 24px;
            text-align: center;
        }

        .success-message {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #16a34a;
            padding: 12px 16px;
            border-radius: 6px;
            font-size: 14px;
            margin-bottom: 24px;
            text-align: center;
        }

        .login-link {
            text-align: center;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
        }

        .login-link p {
            color: #6b7280;
            font-size: 14px;
        }

        .login-link a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }

        .login-link a:hover {
            text-decoration: underline;
        }
        /* Add these styles to your register.css file */

        .strength-msg {
            display: block;
            margin-top: 5px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .strength-msg.strength-weak {
            color: #ff4444;
        }

        .strength-msg.strength-medium {
            color: #f59e0b;
        }

        .strength-msg.strength-strong {
            color: #22c55e;
        }

        /* Password input focus styles */
        .form-input:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        /* Password strength indicator bar (optional) */
        .password-strength-bar {
            width: 100%;
            height: 4px;
            background-color: #e5e7eb;
            border-radius: 2px;
            margin-top: 5px;
            overflow: hidden;
        }

        .password-strength-fill {
            height: 100%;
            border-radius: 2px;
            transition: all 0.3s ease;
            width: 0%;
        }

        .password-strength-fill.weak {
            background-color: #ff4444;
            width: 33%;
        }

        .password-strength-fill.medium {
            background-color: #f59e0b;
            width: 66%;
        }

        .password-strength-fill.strong {
            background-color: #22c55e;
            width: 100%;
        }

        /* Disabled button styles */
        .register-btn:disabled {
            background-color: #9ca3af;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .register-btn:disabled:hover {
            background-color: #9ca3af;
            transform: none;
        }

        /* Password requirements list (optional) */
        .password-requirements {
            margin-top: 8px;
            padding: 0;
            list-style: none;
        }

        .password-requirements li {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 2px;
            display: flex;
            align-items: center;
        }

        .password-requirements li::before {
            content: "✗";
            color: #ff4444;
            margin-right: 6px;
            font-weight: bold;
        }

        .password-requirements li.valid::before {
            content: "✓";
            color: #22c55e;
        }

        .password-requirements li.valid {
            color: #22c55e;
        }
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .register-container {
                margin: 20px;
                padding: 32px 24px;
            }
        }

        @media (max-width: 480px) {
            .register-container {
                padding: 24px 20px;
            }
        }