        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-bg: #0a0d14;
            --secondary-bg: #111827;
            --card-bg: #151b29;
            --card-bg-hover: #1a2135;
            --accent-blue: #3b82f6;
            --accent-blue-hover: #60a5fa;
            --accent-purple: #8b5cf6;
            --accent-green: #10b981;
            --accent-red: #ef4444;
            --text-color: #f3f4f6;
            --text-secondary: #9ca3af;
            --text-tertiary: #6b7280;
            --accent-gradient: linear-gradient(135deg, #3b82f6, #00c8ff);
            --accent-gradient-2: linear-gradient(135deg, #8b5cf6, #d946ef);
            --border-primary: rgba(255, 255, 255, 0.08);
            --border-secondary: rgba(255, 255, 255, 0.05);
            --glass-bg: rgba(21, 27, 41, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
            --shadow-strong: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--primary-bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            position: relative;
            background-image: 
                radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.03) 0%, transparent 35%),
                radial-gradient(circle at 85% 85%, rgba(14, 165, 233, 0.03) 0%, transparent 35%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.02) 0%, transparent 70%);
            padding: 20px;
        }
        
        /* Main Container Wrapper */
        .main-container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            gap: 40px;
            align-items: flex-start;
        }
        
        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
             
            z-index: -2;
        }
        
        @keyframes backgroundShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            33% { transform: scale(1.1) rotate(1deg); }
            66% { transform: scale(0.95) rotate(-1deg); }
        }
        
        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.4;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Language Selector */
        .language-selector {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        /* Ajuste para mobile */
        @media (max-width: 768px) {
            .language-selector {
                top: 16px;
                right: 16px;
                z-index: 1001;
            }
        }
        
        .language-dropdown {
            position: relative;
        }
        
        .language-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: var(--text-color);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            font-weight: 500;
            min-width: 140px;
        }
        
        .language-trigger:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }
        
        .language-flag {
            width: 20px;
            height: 15px;
            border-radius: 3px;
            object-fit: cover;
        }
        
        .language-name {
            flex: 1;
            text-align: left;
        }
        
        .language-chevron {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .language-dropdown.active .language-chevron {
            transform: rotate(180deg);
        }
        
        .language-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            box-shadow: var(--shadow-strong);
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        
        .language-dropdown.active .language-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .language-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .language-option:last-child {
            border-bottom: none;
        }
        
        .language-option:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
        }
        
        .language-option.active {
            background: rgba(59, 130, 246, 0.1);
            color: var(--accent-blue);
            font-weight: 600;
        }
        
        /* Main Container */
        .register-container {
            width: 100%;
            max-width: 480px;
            padding: 32px 40px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: var(--shadow-strong);
            position: relative;
            animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            flex-shrink: 0;
        }
        
        /* Promotional Section */
        .promo-section {
            width: 100%;
            max-width: 480px;
            min-height: auto;
            background: linear-gradient(135deg, #4c1d95, #2563eb);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 30px;
            flex-shrink: 0;
        }
        
        /* Compact Mobile Promo */
        .mobile-promo {
            display: none;
            width: 100%;
            max-width: 400px;
            background: linear-gradient(135deg, #4c1d95, #2563eb);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-promo-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .mobile-promo-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
        }
        
        .mobile-comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        .mobile-comparison-column {
            background: rgba(255, 255, 255, 0.05);
            padding: 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .mobile-comparison-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ef4444, #f97316);
        }
        
        .mobile-comparison-column:nth-child(2)::before {
            background: linear-gradient(90deg, #10b981, #059669);
        }
        
        .mobile-comparison-column h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            opacity: 0.9;
        }
        
        .mobile-comparison-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            font-size: 12px;
            line-height: 1.3;
        }
        
        .mobile-comparison-item:last-child {
            margin-bottom: 0;
        }
        
        .mobile-comparison-item i {
            margin-right: 8px;
            margin-top: 1px;
            font-size: 12px;
            flex-shrink: 0;
        }
        
        .mobile-comparison-item.negative i {
            color: #ef4444;
        }
        
        .mobile-comparison-item.positive i {
            color: #10b981;
        }
        
        .promo-section::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 1;
        }
        
        .promo-section::after {
            content: '';
            position: absolute;
            top: -30px;
            right: 20%;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            z-index: 1;
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .promo-header {
            margin-bottom: 30px;
        }
        
        .promo-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0;
            opacity: 0.95;
        }
        
        .promo-subtitle {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .comparison-column {
            background: rgba(255, 255, 255, 0.05);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .comparison-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ef4444, #f97316);
        }
        
        .comparison-column:nth-child(2)::before {
            background: linear-gradient(90deg, #10b981, #059669);
        }
        
        .comparison-column h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 18px;
            opacity: 0.9;
        }
        
        .comparison-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 14px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .comparison-item:last-child {
            margin-bottom: 0;
        }
        
        .comparison-item i {
            margin-right: 10px;
            margin-top: 2px;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .comparison-item.negative i {
            color: #ef4444;
        }
        
        .comparison-item.positive i {
            color: #10b981;
        }
        
        .stats-grid {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .stat-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .stat-icon {
            font-size: 28px;
        }
        
        .stat-icon.money {
            color: #10b981;
        }
        
        .stat-icon.users {
            color: #3b82f6;
        }
        
        .stat-label {
            font-size: 13px;
            opacity: 0.8;
        }
        
        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 25px;
            border-left: 4px solid #10b981;
        }
        
        .testimonial-text {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 18px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 36px;
            height: 36px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            margin-right: 12px;
            color: white;
        }
        
        .author-info {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .author-plan {
            font-size: 12px;
            color: #a855f7;
            font-weight: 500;
        }
        
        .cta-link {
            color: white;
            text-decoration: underline;
            font-size: 15px;
            font-weight: 500;
            opacity: 0.9;
            transition: opacity 0.3s ease;
            margin-top: auto;
        }
        
        .cta-link:hover {
            opacity: 1;
        }
        
        .register-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent-gradient);
            opacity: 0.6;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Logo Section */
        .logo-section {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .logo-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            animation: logoFloat 6s ease-in-out infinite;
        }
        
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }
        
        .register-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #f3f4f6 0%, #9ca3af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .register-subtitle {
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 400;
            line-height: 1.4;
        }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-color);
            letter-spacing: 0.01em;
        }
        
        /* Ocultar labels no mobile */
        @media (max-width: 768px) {
            .form-label {
                display: none;
            }
            
            .form-group {
                margin-bottom: 16px;
            }
        }
        
        .input-wrapper {
            position: relative;
        }
        
        .form-input {
            width: 100%;
            padding: 14px 18px;
            padding-right: 45px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--border-secondary);
            border-radius: 12px;
            color: var(--text-color);
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }
        
        .form-input:focus {
            border-color: var(--accent-blue);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }
        
        .form-input::placeholder {
            color: var(--text-tertiary);
            font-weight: 400;
        }
        
        .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-tertiary);
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s ease;
        }
        
        .input-icon:hover {
            color: var(--accent-blue);
            transform: translateY(-50%) scale(1.1);
        }
        
        .form-input:focus + .input-icon {
            color: var(--accent-blue);
            transform: translateY(-50%) scale(1.1);
        }
        
        /* WhatsApp specific styling */
        .whatsapp-field .input-icon {
            color: #25d366;
        }
        
        .whatsapp-field .form-input:focus {
            border-color: #25d366;
            box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
        }
        
        .whatsapp-info {
            margin-top: 6px;
            font-size: 12px;
            color: var(--text-tertiary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .whatsapp-info i {
            color: #25d366;
        }
        
        /* Password Strength */
        .password-strength {
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .strength-text {
            font-size: 12px;
            color: var(--text-tertiary);
            min-width: 80px;
        }
        
        .strength-meter {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            display: flex;
            gap: 2px;
        }
        
        .strength-bar {
            flex: 1;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .strength-bar.active.weak { background: var(--accent-red); }
        .strength-bar.active.fair { background: #f97316; }
        .strength-bar.active.good { background: #facc15; }
        .strength-bar.active.strong { background: var(--accent-green); }
        
        /* Password Requirements */
        .password-requirements {
            margin-top: 12px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: none;
            animation: fadeIn 0.3s ease;
        }
        
        .password-requirements.show {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .requirement {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 12px;
            color: var(--text-tertiary);
            transition: all 0.3s ease;
        }
        
        .requirement:last-child {
            margin-bottom: 0;
        }
        
        .requirement i {
            font-size: 12px;
        }
        
        .requirement.valid {
            color: var(--accent-green);
        }
        
        .requirement.valid i {
            color: var(--accent-green);
        }
        
        /* Terms */
        .terms-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .terms-checkbox {
            margin-top: 4px;
            width: 16px;
            height: 16px;
            accent-color: var(--accent-blue);
            flex-shrink: 0;
        }
        
        .terms-text {
            font-size: 14px;
            line-height: 1.3;
        }
        
        .terms-text a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.2s ease;
        }
        
        .terms-text a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }
        
        .terms-text a:hover::after {
            width: 100%;
        }
        
        /* Terms mais compacto no mobile */
        @media (max-width: 768px) {
            .terms-group {
                margin-bottom: 20px;
                font-size: 12px;
                align-items: center;
                gap: 8px;
            }
            
            .terms-text {
                font-size: 12px;
                line-height: 1.2;
            }
            
            .terms-checkbox {
                width: 14px;
                height: 14px;
                margin-top: 0;
            }
        }
        
        /* Register Button */
        .register-button {
            width: 100%;
            padding: 14px;
            background: var(--accent-gradient);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .register-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .register-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
        }
        
        .register-button:hover::before {
            left: 100%;
        }
        
        .register-button:active {
            transform: translateY(-1px);
        }
        
        /* Login Link */
        .login-text {
            text-align: center;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
        }
        
        .login-link {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .login-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }
        
        .login-link:hover::after {
            width: 100%;
        }
        
        /* Error and Success Messages */
        .error-message {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }
        
        .success-message {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #6ee7b7;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }
        
        /* Mobile Responsiveness */
        @media (min-width: 1025px) {
            .promo-section {
                display: flex !important;
            }
            
            .mobile-promo {
                display: none !important;
            }
        }
        
        @media (max-width: 1024px) {
            .main-container {
                flex-direction: column;
                gap: 0;
                align-items: center;
                justify-content: center;
                max-width: 480px;
            }
            
            .promo-section {
                display: none !important;
                visibility: hidden;
                height: 0;
                overflow: hidden;
            }
            
            .mobile-promo {
                display: block !important;
            }
            
            .register-container {
                margin: 0 auto;
                width: 100%;
                max-width: 480px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding: 16px;
                padding-top: 60px;
                min-height: 100vh;
                display: flex;
                align-items: flex-start;
                justify-content: center;
            }
            
            .main-container {
                width: 100%;
                max-width: 400px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                min-height: auto;
                margin-top: 0;
            }
            
            .mobile-promo {
                display: block !important;
                margin-bottom: 16px;
                margin-top: 0;
            }
            
            .language-selector {
                top: 20px;
                right: 20px;
            }
            
            .register-container {
                max-width: 100%;
                width: 100%;
                padding: 20px;
                margin: 0;
                border-radius: 20px;
                min-height: auto;
            }
            
            .logo-section {
                margin-bottom: 20px;
            }
            
            .register-title {
                font-size: 22px;
                margin-bottom: 6px;
            }
            
            .register-subtitle {
                font-size: 12px;
                margin-bottom: 24px;
            }
            
            .logo-container {
                margin-bottom: 12px;
            }
            
            .logo-container div {
                width: 80px !important;
                height: 80px !important;
            }
            
            .form-input {
                padding: 12px 14px;
                padding-right: 40px;
                font-size: 16px; /* Prevent zoom on iOS */
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .whatsapp-info {
                font-size: 11px;
                margin-top: 4px;
            }
            
            .password-strength {
                margin-top: 8px;
            }
            
            .strength-text {
                font-size: 11px;
            }
            
            .password-requirements {
                margin-top: 8px;
                padding: 12px;
            }
            
            .requirement {
                font-size: 11px;
                margin-bottom: 6px;
            }
            
            .register-button {
                padding: 12px;
                font-size: 14px;
                margin-bottom: 16px;
            }
            
            .login-text {
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .register-container {
                padding: 30px 20px;
            }
            
            .terms-group {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
        }
        
        .hidden {
            display: none;
        }