.auth-container { position: fixed; inset: 0; background: var(--bg-primary); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.auth-container.active { display: flex; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 30px 20px; width: 100%; max-width: 400px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.8); }

.auth-logo-wrap { width: 80px; height: 80px; background: rgba(227, 179, 65, 0.1); border: 1px solid rgba(227, 179, 65, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 0 20px rgba(227, 179, 65, 0.2); }
.social-auth-container { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.btn-social { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; border: none; transition: transform 0.1s, filter 0.2s; }
.btn-social:active { transform: scale(0.97); }
.btn-google { background: #fff; color: #3c4043; }
.btn-yandex { background: #FC3F1D; color: #fff; }

.auth-divider { display: flex; align-items: center; text-align: center; margin-bottom: 20px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid #30363d; }
.auth-divider span { padding: 0 10px; color: #6e7681; font-size: 11px; text-transform: uppercase; }

.auth-tabs { display: flex; gap: 10px; margin-bottom: 24px; background: #161b22; border-radius: 12px; padding: 4px; }
.auth-tab { flex: 1; padding: 10px; background: transparent; border: none; color: #8b949e; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 8px; transition: all 0.2s; }
.auth-tab.active { background: #e3b341; color: #000; }
.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeIn 0.3s ease; }