.auth-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 40px 20px;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.auth-title {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--fg);
}

.auth-description {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}

/* Стили для Telegram кнопки */
.telegram-auth-btn {
  margin: 20px 0;
  display: inline-block;
}

/* Анимация загрузки */
.auth-loading {
  display: none;
  margin: 20px auto;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

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

/* Сообщения об ошибках */
.auth-error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: none;
}

/* Успешная авторизация */
.auth-success {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: none;
}

/* Адаптивные стили */
@media (min-width: 768px) {
  .auth-section {
    min-height: calc(100vh - 160px);
  }
  
  .auth-title {
    font-size: 32px;
  }
}