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

.auth-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid #e6d9b8;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6d9b8;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.auth-tab.active {
  color: #7a6122;
  border-bottom-color: #bfa059;
}

.auth-form {
  display: none;
  flex-direction: column;
}

.auth-form.active {
  display: flex;
}

.auth-form label {
  font-size: 0.9rem;
  margin: 12px 0 4px;
}

.auth-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.auth-submit {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  background: #bfa059;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.auth-submit:hover {
  background: #a68a48;
}

.auth-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.auth-error {
  margin-top: 14px;
  color: #a33;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.auth-success {
  margin-top: 14px;
  color: #2a7a3b;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  margin: 20px 0 16px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e6d9b8;
}

.auth-divider span {
  padding: 0 12px;
}

#googleButton {
  display: flex;
  justify-content: center;
}
