   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #68BB59;
            --primary-hover: #4CAF50;
            --lime-green: #32CD32;
            --alabaster: #F1EFE3;
            --black: #000000;
            --gray-600: #6c757d;
            --danger: #dc3545;
            --success: #28a745;
        }

        body {
            font-family: 'Inter', sans-serif;

            background: linear-gradient(130deg, hsla(0, 45%, 100%, 0) 50%, #36e805 50%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .register-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .register-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 450px;
            padding: 40px;
        }
        
        .register-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .register-header h2 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .text-green-500 {
            color: #32cd32;
        }
        
        .font-bold {
            font-weight: 700;
        }
        
        .text-gray-950 {
            color: #4b5563;
        }
        
        .sm {
            font-size: 14px;
        }
        
        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .alert-error {
            background: #fee2e2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }
        
        .alert-success {
            background: #d1fae5;
            color: #059669;
            border: 1px solid #a7f3d0;
        }
        
        .form-group {
            margin-bottom: 10px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #32cd32;
            font-size: 14px;
        }
        
        .form-label i {
            margin-right: 5px;
            color: #32cd32;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s;
            box-sizing: border-box;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #32cd32;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .form-input.error {
            border-color: #dc2626;
            background-color: #fef2f2;
        }
        
        .input-icon {
            position: relative;
        }
        
        .input-icon i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }
        
        .input-icon input {
            padding-left: 45px;
        }
        
        .password-hint {
            font-size: 10px;
            color: #32cd32;
            margin-top: 5px;
        }
        
        .btn-register {
            width: 50%;
            padding: 14px;
            background: linear-gradient(135deg, hwb(100 1% 2%) 0%, hsl(135, 97%, 49%) 50%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-left: 100px;
        }
        
        .btn-register:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }
        
        .btn-register:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        
        .login-link {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }
        
        .login-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        
        .login-link a:hover {
            text-decoration: underline;
        }
        
        .text-muted {
            color: #6b7280;
            font-size: 14px;
        }
        
        /* Password strength indicator */
        .password-strength {
            margin-top: 10px;
        }
        
        .strength-bar-container {
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .strength-bar {
            height: 100%;
            width: 0;
            transition: all 0.3s;
        }
        
        .strength-bar.weak {
            background: #dc2626;
            width: 33.33%;
        }
        
        .strength-bar.medium {
            background: #f59e0b;
            width: 66.66%;
        }
        
        .strength-bar.strong {
            background: #10b981;
            width: 100%;
        }
        
        .strength-text {
            font-size: 12px;
            margin-top: 5px;
            display: block;
        }
        
        /* Terms checkbox */
        .terms-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .terms-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .terms-checkbox span {
            font-size: 14px;
            color: #4b5563;
        }
        
        .terms-checkbox a {
            color: #667eea;
            text-decoration: none;
        }
        
        .terms-checkbox a:hover {
            text-decoration: underline;
        }
        
        /* Loading spinner */
        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Success message animation */
        .alert-success {
            animation: slideDown 0.5s ease;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @media (max-width: 480px) {
            .register-card {
                padding: 30px 20px;
            }
        }