.reg-page {
  min-height: 100vh;
  background: #1a1208;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  font-family: "Poppins", sans-serif;
  color: white;
}

.reg-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 106, 0.15);
  border-radius: 18px;
  padding: 2rem;
  max-width: 450px;
  width: 100%;
}

.reg-logo {
  width: 120px;
  margin-bottom: 15px;
}

h2 {
  color: #ffd76a;
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.reg-input-group {
  margin-bottom: 1rem;
  position: relative;
}

.reg-input-group input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.reg-toggle-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.reg-plan-card {
  background: rgba(255, 215, 106, 0.08);
  border: 1px solid rgba(255, 215, 106, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.reg-plan-card h3 {
  margin: 0;
  color: #ffd76a;
}

.reg-plan-price {
  margin-top: 8px;
}

.reg-old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 8px;
}

.reg-new-price {
  color: #ffd76a;
  font-weight: 700;
}

.reg-btn-primary {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #f4c542, #6a4518);
  color: black;
  font-weight: 700;
  margin-top: 15px;
  cursor: pointer;
}

.reg-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #c9b28e;
}

.reg-note a {
  color: #ffd76a;
  font-weight: 600;
  text-decoration: none;
}
.reg-top-bar {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 999;
}

.reg-back-btn {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd76a;
  border: 1px solid rgba(255, 215, 106, 0.2);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.reg-back-btn:hover {
  background: #ffd76a;
  color: #1a1208;
}
