body {
    background-color: #fff2f7;
}

/* ============================= */
/* SIGNUP / LOGIN SECTION */
/* ============================= */
.signuplogin {
  padding: 6rem 1.5rem;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
}

/* Heading */
.heading {
  letter-spacing: 1px;
  font-weight: bold;
  color: #0b0224;
  margin-bottom: 2rem;

  font-size: 50px;
}

/* Form container */
.form-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 400px;
  margin: 0 auto;

  
}

/* Input fields */
.info-text {
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.8rem 1rem;
  border: 1px solid #7b5cff;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-text:focus {
  border-color: #7b5cff;
  box-shadow: 0 2px 10px #7b5cff;
}

/* Button */
.submit-button {
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  color: #fff;
  font-size: 1.2rem;
  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 {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #7b5cff;
}

/* Forgot password link */
.password-button {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  margin-top: 0.5rem;
}

.password-button:hover {
  color: #ff6aa2;
  transform: translateY(-2px);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Switch text */
.switch {
  margin-top: 1.5rem;
  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 {
  color: #ff6aa2;
  transform: translateY(-2px);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.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;
  }
}