/* 基础重置与变量定义 - 与登录页面保持一致 */
:root {
    /* 主色系 */
    --primary-color: #667eea;
    --primary-dark: #5a6fd8;
    --primary-light: #a3b4fc;
    --secondary-color: #764ba2;
    --secondary-light: #9d7bbd;
    --accent-color: #ff6b6b;
    --accent-light: #ff9e9e;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* 中性色 */
    --dark-color: #0f172a;
    --darker-color: #0a0f1c;
    --dark-surface: #1e293b;
    --medium-color: #475569;
    --light-color: #f8fafc;
    --lighter-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    
    /* 渐变 */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, #ff8e53 100%);
    --success-gradient: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    --warning-gradient: linear-gradient(135deg, var(--warning-color) 0%, #d97706 100%);
    --dark-gradient: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* 效果 */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --inner-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* 尺寸 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* 过渡 */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: var(--dark-gradient);
    color: var(--light-color);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 继承登录页面的星空背景样式 */
.cosmic-background,
.stars-container,
.star,
.nebula,
.planet,
.particles-container,
.particle {
    /* 重用登录页面的星空背景样式 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* 主容器 */
.register-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* 左侧游戏展示区 - 移动端隐藏 */
.game-showcase {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.showcase-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* 动态logo */
.dynamic-logo {
    text-align: center;
    margin-bottom: 60px;
    animation: slideInUp 1s ease;
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.logo-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.logo-icon i {
    font-size: 80px;
    color: white;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: breath 3s infinite;
}

@keyframes breath {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.ring-1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.game-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.title-main {
    background: linear-gradient(135deg, white, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.game-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* 优势轮播 */
.advantages-carousel {
    margin: 40px 0;
}

.carousel-track {
    position: relative;
    height: 180px;
}

.advantage-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    background: var(--glass-gradient);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.advantage-card.active {
    opacity: 1;
    transform: translateX(0);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.advantage-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.advantage-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* 注册统计数据 */
.register-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* 右侧注册表单区 */
.register-form-section {
    flex: 1;
    max-width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    max-width: 450px;
    width: 100%;
}

/* 表单头部 */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.header-main h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.header-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.register-switch {
    margin-top: 5px;
}

.switch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.switch-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* 消息区域 */
.messages-area {
    margin-bottom: 30px;
}

.message-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    animation: slideInUp 0.3s ease;
    border: 1px solid transparent;
}

.message-card.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.message-card.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.message-card.info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.message-icon {
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.message-card.success .message-icon {
    color: var(--success-color);
}

.message-card.error .message-icon {
    color: var(--error-color);
}

.message-card.info .message-icon {
    color: var(--info-color);
}

.message-content {
    flex: 1;
}

.message-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.message-text {
    font-size: 13px;
    opacity: 0.9;
}

.message-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.message-close:hover {
    color: white;
}

/* 进度指示器 */
.progress-indicator {
    margin-bottom: 30px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.progress-step.active .step-indicator {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.progress-step.completed .step-indicator {
    background: var(--success-color);
    border-color: var(--success-color);
}

.step-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: white;
    font-weight: 600;
}

/* 表单步骤 */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* 表单样式 */
.register-form {
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.input-label i {
    width: 16px;
    text-align: center;
    color: var(--primary-light);
}

.required-mark {
    color: var(--accent-color);
    margin-left: 2px;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 16px;
    color: white;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input.error {
    border-color: var(--error-color);
}

.form-input.success {
    border-color: var(--success-color);
}

.input-status {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.form-input.success ~ .input-status::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
}

.form-input.error ~ .input-status::before {
    content: '!';
    color: var(--error-color);
    font-weight: bold;
}

.form-input:focus ~ .input-status {
    opacity: 1;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-fast);
}

.password-toggle:hover {
    color: white;
}

.input-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 密码强度指示器 */
.password-strength {
    margin: 10px 0;
}

.strength-meter {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.strength-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* 验证码输入区域 */
.code-input-wrapper {
    display: flex;
    gap: 15px;
}

.code-input-wrapper .input-wrapper {
    flex: 1;
}

.code-send-btn {
    position: relative;
    padding: 0 25px;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.code-send-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.code-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.code-send-btn.sending {
    background: var(--medium-color);
}

.code-send-btn.sending .btn-text {
    display: none;
}

.code-send-btn.sending .btn-loading {
    display: flex;
}

.code-send-btn.counting {
    background: var(--medium-color);
}

.btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* 用户协议 */
.agreement-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 30px 0;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.agreement-group.error {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.05);
    animation: pulseError 0.5s ease;
}

@keyframes pulseError {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.checkbox-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.agreement-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.agreement-link:hover {
    color: white;
    text-decoration: underline;
}

/* 步骤导航 */
.step-navigation {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.prev-step-btn,
.next-step-btn,
.register-submit-btn {
    position: relative;
    padding: 18px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

.prev-step-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.prev-step-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.next-step-btn {
    flex: 2;
    background: var(--primary-gradient);
    color: white;
}

.next-step-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.register-submit-btn {
    flex: 2;
    background: var(--success-gradient);
    color: white;
}

.register-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.prev-step-btn:disabled,
.next-step-btn:disabled,
.register-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.register-submit-btn.loading .btn-text {
    display: none;
}

.register-submit-btn.loading .btn-loading {
    display: flex;
}

.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
}

/* 表单底部 */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-prompt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.login-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.login-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: white;
    transform: translateX(3px);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* 响应式设计 - PC端显示左侧区域 */
@media (min-width: 1025px) {
    .register-wrapper {
        flex-direction: row;
    }
    
    .game-showcase {
        display: flex;
    }
    
    .register-form-section {
        max-width: 500px;
        border-left: 1px solid var(--border-color);
    }
}

/* 平板设备 */
@media (max-width: 1024px) {
    .register-wrapper {
        flex-direction: column;
    }
    
    .game-showcase {
        display: none;
    }
    
    .register-form-section {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .form-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .register-stats {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* 平板设备横屏 */
@media (max-width: 1024px) and (orientation: landscape) {
    .register-wrapper {
        flex-direction: row;
    }
    
    .game-showcase {
        display: flex;
        min-height: 100vh;
    }
    
    .register-form-section {
        max-width: 50%;
    }
}

/* 移动设备 */
@media (max-width: 768px) {
    .register-form-section {
        padding: 25px 15px;
    }
    
    .code-input-wrapper {
        flex-direction: column;
    }
    
    .code-send-btn {
        width: 100%;
        padding: 15px;
        justify-content: center;
    }
    
    .step-navigation {
        flex-direction: column;
    }
    
    .prev-step-btn,
    .next-step-btn,
    .register-submit-btn {
        width: 100%;
        padding: 16px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .register-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .game-title {
        font-size: 36px;
    }
    
    .title-sub {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 30px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .game-tagline {
        font-size: 16px;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .advantage-icon {
        margin-bottom: 15px;
    }
    
    .form-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .register-switch {
        align-self: flex-start;
    }
    
    .agreement-group {
        padding: 15px;
    }
}