body {
  margin: 0;
  min-height: 100vh;
  background: #FFFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Hind', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E8D5A3;
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.1);
}

.chakra {
  width: 56px;
  height: 56px;
  animation: spin 60s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.title {
  font-family: 'Cinzel', serif;
  color: #E8560A;
  font-size: 28px;
  margin: 0;
  text-align: center;
}

.subtitle {
  color: #6B6B6B;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.divider {
  width: 100%;
  height: 1px;
  background: #E8D5A3;
  margin: 8px 0;
}

.google-btn {
  width: 100%;
  padding: 12px 24px;
  background: white;
  border: 1px solid #E8D5A3;
  border-radius: 12px;
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.google-btn:hover {
  background: #FFF8E7;
  border-color: #D4AF37;
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #6B6B6B;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #E8D5A3;
  border-top-color: #E8560A;
  border-radius: 50%;
  animation: spin-fast 0.8s linear infinite;
}

@keyframes spin-fast {
  to { transform: rotate(360deg); }
}

.error {
  color: #C0392B;
  font-size: 13px;
  text-align: center;
}

.footer {
  color: #6B6B6B;
  font-size: 12px;
}
