/* ===== Auth pages ===== */

.auth-page {
  min-height: 100vh;
  background: #111827;
  color: #d1d5db;
}

.auth-main {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 32px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.auth-title {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.auth-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.auth-button:hover {
  transform: translateY(-1px);
}

.auth-button-discord {
  background: #4f46e5;
}

.auth-button-discord:hover {
  background: #4338ca;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.25);
}

.auth-button-guest {
  background: #374151;
  color: #d1d5db;
}

.auth-button-guest:hover {
  background: #4b5563;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.auth-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.auth-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px 0;
}

.auth-divider-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #4b5563;
}

.auth-divider-text {
  position: relative;
  padding: 0 10px;
  background: #1f2937;
  color: #9ca3af;
  font-size: 14px;
}

/* ===== Mobile ===== */

@media (max-width: 480px) {
  .auth-main {
    align-items: stretch;
    padding: 16px 12px;
  }

  .auth-card {
    max-width: 100%;
    margin: auto 0;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .auth-title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .auth-button {
    min-height: 50px;
    padding: 13px 14px;
    font-size: 15px;
  }
}