

/* Background Glow */
.premium-section {
  min-height: 80vh;
  background: radial-gradient(circle at center, rgba(198,165,75,0.08), transparent 60%),
              #0b0f18;
  padding: 30px 15px;
}

/* Card */
.premium-card {
  background: #111520;
  padding: 50px 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(198,165,75,0.3);
  box-shadow: 0 0 40px rgba(198,165,75,0.08);
  text-align: center;
}

/* Small Label */
.small-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c6a54b;
  margin-bottom: 15px;
}

/* Title */
.main-title {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
}

.main-title span {
  color: #c6a54b;
  font-style: italic;
}

/* Subtitle */
.sub-text {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
}

/* Progress */
.progress-wrapper {
  height: 3px;
  background: #222;
  margin-bottom: 35px;
  position: relative;
}

.progress-bar-custom {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #c6a54b, #e6c76a);
}

/* Inputs */
.premium-input {
  width: 100%;
  padding: 12px 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: #fff;
  transition: 0.3s;
}

.premium-input::placeholder {
  color: #666;
}

.premium-input:focus {
  outline: none;
  border-bottom: 1px solid #c6a54b;
  box-shadow: 0 5px 15px rgba(198,165,75,0.1);
}

/* Button */
.premium-btn {
  padding: 12px;
  background: linear-gradient(135deg, #c6a54b, #e6c76a);
  border: none;
  color: #111;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s;
}

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(198,165,75,0.3);
}

/* Bottom text */
.bottom-text {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

.bottom-text a {
  color: #c6a54b;
  text-decoration: none;
}