/* ========== Signup Page ========== */

/* Section */
.signup-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  background: #0b0b0b;
}

/* Card */
.signup-card {
  max-width: 640px;
  margin: 0 auto;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 576px) {
  .signup-card {
    padding: 3rem 2.75rem;
  }
}

/* Header */
.signup-card__header {
  text-align: center;
  margin-bottom: 2rem;
}
.signup-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #D4AF37;
  margin: 0 0 0.5rem;
}
.signup-card__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}

/* Labels */
.signup-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Inputs */
.signup-input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.875rem;
  font-size: 0.9375rem;
  color: #fff;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.signup-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.signup-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* Textarea */
.signup-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit button */
.signup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  color: #0f0f0f;
  background: #D4AF37;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.signup-btn:hover {
  background: transparent;
  color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.signup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.signup-btn i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.signup-btn:hover i {
  transform: translateX(3px);
}

/* Alerts */
.signup-section .alert-success {
  background: rgba(21, 128, 61, 0.15);
  border: 1px solid rgba(21, 128, 61, 0.4);
  color: #86efac;
  border-radius: 8px;
}
.signup-section .alert-danger {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fecaca;
  border-radius: 8px;
}

/* Header on signup page */
.header-section--style3 .header-brand__name--secondary {
  color: #D4AF37 !important;
}
.header-section--style3 .menu--style2 a,
.header-section--style3 .header-brand__name--primary {
  color: #ffffff !important;
}
.header-section--style3 .header-bar span {
  background: #ffffff !important;
}

/* Footer text */
.footer .footer__end-copyright,
.footer .footer__end-copyright p {
  color: rgba(255, 255, 255, 0.7) !important;
}
