/*!
Theme Name: POSTEX
Text Domain: postex
Version: 1.0
*/
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.auth-modal.hidden {
  display: none;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.auth-box {
  position: relative;
  max-width: 720px;
  margin: 5vh auto;
  background: #fff;
  border-radius: 32px;
  padding: 48px;
  z-index: 2;
}

.auth-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.auth-title {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
}

.auth-subtitle {
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 32px;
}

.auth-box input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid #e0e6f5;
  margin-bottom: 16px;
}

.auth-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn-outline {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  border: 1px solid #2da4ff;
  background: none;
  color: #2da4ff;
}

.btn-primary {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg,#2da4ff,#007bff);
  color: #fff;
  border: none;
}

.auth-switch {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.auth-switch a {
  color: #2da4ff;
  text-decoration: none;
  font-weight: 500;
}

.auth-step {
  display: none;
}

.auth-step.active {
  display: block;
}
