/* ===========================
   TAC Membership Styles
   =========================== */

.tac-fade-overlay {
  position: relative;
  height: 100px;
  margin-bottom: -100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
  z-index: 1;
  pointer-events: none;
  border: 1px solid red!important;
}

.tac-locked-message {
  background: #f9f9f9;
  border: 2px solid #ddd;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  width: 100%;
  font-family: sans-serif;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.tac-locked-message p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
}

.tac-locked-message form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tac-locked-message label {
  font-weight: bold;
  font-size: 0.9rem;
}

.tac-locked-message input[type="email"],
.tac-locked-message input[type="password"],
.tac-locked-message input[type="text"] {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: auto!important;
}

.tac-locked-message button[type="submit"] {
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tac-locked-message button[type="submit"]:hover {
  background: #333;
}

.tac-forgot-password,
.tac-signup-cta,
.tac-login-cta {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.tac-forgot-password a,
.tac-signup-cta a,
.tac-login-cta a {
  color: #0073aa;
  text-decoration: none;
}

.tac-signup-error,
.tac-login-error {
  color: #d63638;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 600px) {
  .tac-locked-message {
    padding: 1.25rem;
  }
}
