html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Membership Types Styles */
.membership-section {
    padding: 60px 0;
    margin-top: 40px;
}

.membership-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.membership-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #002c5f; /* Deep blue for premium feel */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.membership-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #002c5f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.membership-link:hover {
    background-color: #004085;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 44, 95, 0.3);
}

.section-title {
    text-align: center;
    font-weight: 800;
    font-size: 2.25rem;
    color: #212529;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #002c5f;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Form Section Styles */
.form-section {
    background-color: #fcfcfc;
}

.form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #002c5f;
    box-shadow: 0 0 0 0.25rem rgba(0, 44, 95, 0.1);
}

.form-check-input:checked {
    background-color: #002c5f;
    border-color: #002c5f;
}

.btn-primary {
    background-color: #002c5f;
    border-color: #002c5f;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #004085;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 44, 95, 0.2);
}

.success-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #e9f7ef;
    border-radius: 50%;
}

/* Honeypot Styling (Hidden from users) */
.h-pot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}
