/* -------------------------------------------------------------------
   Import your index.css (Doto font, resets, etc.)
------------------------------------------------------------------- */
@import url('index.css');


/* -------------------------------------------------------------------
   Base page styles
------------------------------------------------------------------- */

/*— hide the big header logos —*/
header img.logoImg,
header img.logo {
  display: none !important;
}


body {
  margin: 0;
  padding: 0;
  background-color: #f6f6f6;
  color: #000;                      /* pure black text */
  font-family: "Doto", sans-serif;
  font-weight: 700;                 /* bold by default */
}



/* -------------------------------------------------------------------
   Form container (transparent, centered, larger)
------------------------------------------------------------------- */
.login-container {
  max-width: 480px;
  margin: 8vh auto;
  padding: 2rem;
  background: none;
  box-shadow: none;
  text-align: center;
}


/* -------------------------------------------------------------------
   Heading (h2) styling like login h1
------------------------------------------------------------------- */
.login-container h2 {
  font-family: inherit;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #000;
}


/* -------------------------------------------------------------------
   Form inputs (text, email, password)
------------------------------------------------------------------- */
.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"] {
  width: 100%;
  padding: 1rem;
  margin: 0.75rem 0;
  border: 2px solid #000;
  border-radius: 3px;
  background: transparent;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
}

/* darker, bold placeholders */
.login-container input::placeholder {
  color: #333;
  opacity: 1;
  font-weight: 700;
}


/* -------------------------------------------------------------------
   Submit button styling
------------------------------------------------------------------- */
.login-container input[type="submit"] {
  width: 70%;
  padding: 1rem;
  margin-top: 1.5rem;
  border: none;
  border-radius: 3px;
  background-color: #d7402b;
  color: #fff;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.login-container input[type="submit"]:hover {
  background-color: #cc3a27;
}


/* -------------------------------------------------------------------
   reCAPTCHA spacing (if you still have it)
------------------------------------------------------------------- */
.g-recaptcha {
  margin: 2rem 0;
}


/* -------------------------------------------------------------------
   Error message
------------------------------------------------------------------- */
#errorMessage {
  color: red;
  font-size: 1rem;
  font-weight: 700;
}


/* -------------------------------------------------------------------
   Bottom “Already have an account?” link
------------------------------------------------------------------- */
.login-container p:last-of-type {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 700;
}
.login-container p:last-of-type a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
.login-container p:last-of-type a:hover {
  color: #d7402b;
}
