
/* Auth Modal Styles */
.auth-modal-content {
  max-width: 400px;
}

.auth-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: #aaa;
  padding: 10px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.2s;
}

.auth-tab:hover {
  color: #fff;
}

.auth-tab.active {
  color: #D4AF37;
  border-bottom: 2px solid #D4AF37;
  margin-bottom: -2px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  color: #ccc;
  font-size: 0.9em;
  font-weight: 500;
}

.auth-submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  font-size: 1.1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
