/*
Tv-dark-grey #707070
Tv-darker-grey #555555
Tv-dark-blue #003563

Tv-lightest-grey #d7d7d7
Tv-light-grey #b7b7b7
Tv-grey #898989

Tv-gold #f3ad00
Tv-light-blue # 448ccb
Tv-midnight-blue #2a5077
Tv-purple #622c71
Tv-yellow #efc600
Tv-teal #0c6f6b
Tv-steel-blue #23586f

Tv-orange #e98724
Tv-green #586d31
Tv-maroon #762c2f
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* font-family: "Outfit", sans-serif; */

:root {
  --tv-orange: #f88200;
  --tv-lighter-orange: #fea84b;
  --tv-green: #526e26;
  --tv-maroon: #762c2f;
  --tv-blue-steel: #23586f;
  --tv-teal: #0c6f6b;
  --tv-yellow: #efc600;
  --tv-purple: #622c71;
  --tv-midnight-blue: #2a5077;
  --tv-dark-blue: #003563;
  --tv-light-blue: #448ccb;
  --tv-gold: #f3ad00;
  --tv-lightest-grey: #d7d7d7;
  --tv-light-grey: #b7b7b7;
  --tv-very-light-grey: #e8eae1;
  --tv-grey: #898989;
  --tv-dark-grey: #707070;
  --tv-darker-grey: #555555;
  --tv-dark-blue: #003563;
  --tv-white: #ffffff;
  --tv-off-white: #f7f7f7;
  --tv-equine-teal: #27565a;
  --tv-equine-dark-blue: #0f3a44;
  --tv-equine-light-blue: #c8dde4;
}

body {
  padding: 0px;
  margin: 0px;
}

div.page-wrapper {
  width: 100%;
  height: 100vh;
  background-image: url("background.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
}

div.login-box {
  height: 400px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #e8e8e88f;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 2px 2px 14px 2px #f393004a;
  transition: .3s;
}

/* div.login-box:hover {
  background-color: #e8e8e8b8;
  box-shadow: 2px 2px 14px 2px #f393007a;
} */

@media screen and (max-width: 768px) {
  div.login-box {
    height: 65vh;
  }
}
div.login-box p.message {
  margin: 5px 0px;
}
div.login-box div.icon div.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 7.5px;
}
div.login-box div.icon div.image-wrapper img {
  width: 80%;
}
div.login-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
div.login-box form.login input,
div.login-box form.reset input {
  margin-bottom: 15px;
}
div.login-box form input {
  border: 1px solid grey;
  border-radius: 10px;
  padding: 10px;
  width: 80%;
}
div.login-box form input.error {
  border: 1px solid #c12424;
}
div.login-box form input[type="submit"] {
  background-color: var(--tv-green);
  color: var(--tv-white);
  padding: 15px;
  font-size: 15pt;
  cursor: pointer;
}
div.login-box form input[type="submit"][disabled] {
  background-color: var(--tv-grey);
}
div.login-box form meter {
  margin: 0px;
  width: 77%;
  height: 12px;
}
div.login-box form span.password-info {
  height: 1.8em;
  font-size: 11pt;
}
div.login-box form div.password-suggestions {
  font-size: 11pt;
  margin-bottom: 10px;
  color: var(--tv-maroon);
}
div.login-box p.message {
  color: var(--tv-darker-grey);
  width: 70%;
  text-align: center;
}
div.login-box a.login-link {
  color: var(--tv-darker-grey) !important;
  text-decoration: underline !important;
  font-size: 11pt;
}
div.login-box a.login-link:hover {
  color: var(--tv-off-white) !important;
}
div.login-box div.server-message {
  color: var(--tv-darker-grey) !important;
  font-size: 11pt;
  margin-bottom: 10px;
}
div.login-box div.server-error {
  color: #c12424;
  font-size: 11pt;
  margin-bottom: 10px;
}

div.terravesta-footer img {
  height: 60px;
}

/*# sourceMappingURL=styles.css.map */

/* New edited style css start */
.admin-login-icon a img {
  width: 175px;
}

.gaia-login-heading h3 {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 300;
  color: #000000;
}

.gaia-login-heading h3 span {
  text-transform: capitalize;
}

#harvest-hub-external-link {
  position: absolute;
  right: 40px;
  top: 0;
}

#harvest-hub-external-link 
.harvest-hub-logo 
img {
  width: 160px;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 10px 10px 10px 10px;
  transition: .3s;
  box-shadow: 2px 2px 15px 2px #00000052;
  border: 1px solid #f4af2d;
  margin-top: 5px;
}

#harvest-hub-external-link 
.harvest-hub-logo img:hover {
  background: #dadada;
}

.admin-login-icon {
  margin-top: 18px;
}
/* New edited style css end */
