.membership-page {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.membership-page h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.membership-page .tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ccc;
}

.membership-perks {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.membership-perks li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.membership-note {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 30px;
}

.membership-btn {
  display: inline-block;
  padding: 12px 25px;
  background: gold;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}
nav a {
  font-size: 16px !important;
  font-family: inherit !important;
}
.form-input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}
.form-input {
    background-color: #111;
    color: #fff;
    border: 1px solid #333;
}

.form-input::placeholder {
    color: #aaa;
}

.form-input:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}
.membership-form {
    max-width: 400px;
    margin: 0 auto;
}