/* ------------------------------------------User Elements------------------------------------------------------- */
.login-page {
  /* height: 80vh; */
}
.login {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 2px 2px 8px #999;
  margin: 100px auto;
  padding: min(5vw, 50px);
  width: min(90vw, 500px);
}
.login.new-password-form {
  width: min(90vw, 500px);
}
.login h1 {
  text-align: center;
  margin-top: 0;
}
.login a {
  color: black;
}
.login a:hover {
  color: var(--colour-2);
}
.login ul {
  font-size: 0.9rem;
}
.login ul {
  padding-left: 20px;
}


.form-input {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.form-input.checkbox {
  flex-direction: row;
  gap: 0.5rem;
  align-items: start;
}
.form-input.checkbox label {
  font-size: 0.75rem;
}
.form-input.checkbox label a {
  text-decoration: underline;
}
.form-input input {
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.5rem;
}
.form-input .error {
  border: none;
  outline: 2px solid red;
}

.form-input select {
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.5rem;
}
.form-input .reg-form.error {
  border: none;
  outline: 2px solid red;
}
.password-guide {
  background-color: #F5F5F5;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.password-guide p{
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.password-guide ul{
  padding-left: 30px;
  margin: 0.8rem 0;
}
.password-guide li{
  font-size: 0.8rem;
  padding-bottom: 7px;
}
.password-guide li:last-of-type {
  padding-bottom: 0;
}
.submit-button {
  font-size: 1rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  /* font-weight: 600; */
  background-color: var(--colour-1);
  color: white;
}

.submit-button.w200px {
  width: 200px;
}
.submit-button:hover {
  background-color: #279e9b;
  color: white;
}
.submit-button:disabled {
  background-color: #eeeeee;
  color: #dddd;
}



/* -----------------------------------Contact Form----------------------------------------- */
.contact-form {
  position: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact-form h2, .contact-form p {
  text-align: center;
  color: #024346;
}
.contactform {
  position: flex;
  justify-content: center;
  align-items: center;
  width: min(80vw, 500px);
  margin: 50px auto;
}
.contactform div {
  margin: 0.8rem 0;
}
.contactform input,
.contactform textarea {
  font-family: "Noto Sans", sans-serif;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
}
.contactform textarea {
  font-family: "Noto Sans", sans-serif;
}
.contactform input {
  height: 2rem;
}
/* -----------------------------------Subscribe Form----------------------------------------- */
.subscribe-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: LightBlue;
}
.subscribe-form {
  position: relative;
  background-color: white;
  padding: 7px;
  border: 1px solid WhiteSmoke;
  border-radius: 5px;
  box-shadow: 0 17px 9px -15px #999;
  display: flex;
  flex-direction: row;
  width: 280px;
}
.subscribe-form input {
  border: none;
  width: 100%;
  height: 1.8rem;
  cursor: text;
}
.subscribe-form input:focus {
  border: none;
  outline: none;
}
.subscribe-form input:disabled {
  background-color: white;
}
.subscribe-form button {
  border: none;
  border-radius: 5px;
  padding: 0 10px;
  cursor: pointer;
}
.subscribe-form button:hover:enabled {
  background-color: grey;
}

.recaptcha-terms p{
  color: grey;
  font-size: 0.6rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.recaptcha-terms a{
  color: grey;
}
.recaptcha-terms a:hover{
  color: var(--colour-4);
}
@media screen and (min-width: 425px) {
  .subscribe-form {
    width: 400px;
  }
}
@media screen and (min-width: 600px) {}
@media screen and (min-width: 769px) {}
@media screen and (min-width: 1024px) {
  .subscribe-section {
    padding: 50px;
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
