/* ============================= */
/* SIGNUP / LOGIN SECTION */
/* ============================= */
.signuplogin {
  padding: 3rem 1.5rem;
  text-align: center;
}

/* Heading */
.heading {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: bold;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* Form container */
.form-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Input fields */
.info-text {
  font-family: "Baskerville", serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.8rem 1rem;
  border: 1px solid #000;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-text:focus {
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

/* Button */
.submit-button {
  background-color: #000;
  color: #fff;
  font-family: "Baskerville", serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  padding: 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  background-color: #222;
  transform: translateY(-2px);
}

/* Forgot password link */
.password-button {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  margin-top: 0.5rem;
}

.password-button:hover {
  text-decoration: underline;
}

/* Switch text */
.switch {
  margin-top: 1.5rem;
  font-family: "Baskerville", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #000;
}

.switch-text {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  margin-left: 0.3rem;
}

.switch-text:hover {
  text-decoration: underline;
}

.hidden {
    display: none;
}

#response {
    margin-top: 15px;
    font-size: 18px;
    
}

.success {
    color: rgb(33, 137, 19);
}

.error {
    color: rgb(238, 27, 27);
}

/* ============================= */
/* MOBILE TUNING */
/* ============================= */

@media (max-width: 480px) {
  .info-text {
    font-size: 1rem;
  }

  .submit-button {
    font-size: 1rem;
  }
}