/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #EEB037;
  --second-color:#eeb137ed;
  --title-color:#fff;
  --text-color: #fff;
  --body-color: hsl(208, 97%, 85%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Roboto", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
  --smaller-font-size: 1rem;

  /*========== Font weight ==========*/
  /* --font-medium: 500;
  --font-semi-bold: 600; */
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --h2-font-size: 1.75rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #000;
  font-family: var(--body-font);
  color: var(--text-color);
}

input,
button {
  font-family: var(--body-font);
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== LOGIN FORM ===============*/
.gap {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.gap img {
  width: 30%;
}
.login__content, 
.login__form, 
.login__inputs {
  display: grid;
  justify-content: start;
  grid-template-columns: 1fr;
}

.login__content {
  position: relative;
  height: 100vh;
  align-items: center;
}

.login__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.login__form {
  position: relative;
  background-color: hsl(0deg 0% 12% / 75%);
  border: none;
  margin-inline: 1.5rem;
  row-gap: 1.25rem;
  backdrop-filter: blur(2px);
  padding: 2rem;
  border-radius: 20px;
}

.login__title {
  color: var(--title-color);
  font-size: var(--h2-font-size);
  /* margin-bottom: .5rem; */
}

.login_forgot_title {
  color: #EEB037;
  font-size: 1.4rem;
  padding-top: 10px;
}

.login__title span {
  color: var(--first-color);
}

.login__description {
  font-size: var(--small-font-size);
}

.login__inputs {
  row-gap: .75rem;
  margin-bottom: .5rem;
}

.login__label {
  display: block;
  color: var(--title-color);
  font-size: .9rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: .25rem;
}

.login__input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 150px;
  border: none;
  background-color: hsl(0deg 0% 0% / 60%);
  color: var(--title-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  transition: border .4s;
}

.login__input::placeholder {
  color: #8a8a8a;
}

.login__input:focus, 
.login__input:valid {
  border: 2px solid var(--first-color);
}

.login__box {
  position: relative;
}

.login__box .login__input {
  padding-right: 36px;
}

/* Verify Mail Message */
.verify_email_message {
  font-size: 1rem;
}

.login__eye {
  width: max-content;
  height: max-content;
  position: absolute;
  right: .75rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 1.25rem;
  cursor: pointer;
}

.login__check {
  display: flex;
  column-gap: .5rem;
  align-items: center;
}

.login__check-input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--text-color);
  background-color: hsla(244, 16%, 92%, 0.2);
  border-radius: 20px;
}

.login__check-input:checked {
  background: var(--first-color);
}

.login__check-input:checked::before {
  content: "✔";
  display: block;
  color: #fff;
  font-size: .75rem;
  transform: translate(1.5px, -2.5px);
}

.login__check-label {
  font-size: var(--small-font-size);
}

.login__buttons {
  display: flex;
  column-gap: .75rem;
}

.login__button {
  width: 100%;
  padding: 14px 2rem;
  border-radius: 120px;
  background: linear-gradient(180deg, 
              var(--first-color), 
              var(--second-color));
  color: #000;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.294);
  margin-bottom: 1rem;
  cursor: pointer;
}

.login__button-ghost {
  background: hsla(244, 16%, 92%, .6);
  border: 2px solid var(--first-color);
  color: var(--first-color);
  box-shadow: none;
}

.login__forgot {
  font-size: .9rem;
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  text-decoration: none;
}

.login__forgot:hover {
  color: #EEB037;
}
.terms-conditions {
  display: flex;
  align-items: baseline;
}

#terms-conditions {
  display: inline;
  font-size: 13px;
  color: rgb(216, 216, 216);
  /* padding-left: 5px; */
}

.terms_policy {
  text-decoration: none;
  color: #EEB037;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 360px) {
  .login__buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  body > div.alert.alert-warning.alert-important {
    font-size: 1.2rem;
    position: absolute;
    top: 9% !important;
    right: 6% !important;
    z-index: 9;
    background: salmon;
    padding: 28px 60px;
    color: #000;
    width: 343px !important;
    text-align: center;
  }

  body > div.alert.alert-success.alert-important {
    font-size: 1.2rem;
    position: absolute;
    top: 9% !important;
    right: 6% !important;
    z-index: 9;
    background: forestgreen;
    padding: 28px 60px;
    color: #fff;
    width: 343px !important;
    text-align: center;
  }

  .login__description {
    font-size: .9rem;
    padding: 10px 0;
    line-height: 20px;
  }
  .login_forgot_title {
    color: #EEB037;
    font-size: var(--h2-font-size);
    padding: 10px 0;
  }
}


/* For medium devices */
@media screen and (min-width: 576px) {
  .login__form {
    width: 450px;
    justify-self: flex-start;
  }
}

/* For large devices */
@media screen and (min-width: 1064px) {
  .container {
    height: 100vh;
    display: grid;
    place-items: center;
  }

  .login__content {
    width: 90vw;
    height: 90vh !important;
  }
  .login__img {
    border-radius: 20px;
  }
  .login__form {
    justify-self: flex-start;
    margin-right: 4.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .login__content {
    height: 700px;
  }
  .login__form {
    row-gap: 2rem;
    padding: 3rem;
    border-radius: 20px;
  }
  
  .login__label, 
  .login__button {
    font-size: var(--normal-font-size);
  }
  .login__description {
    font-size: .9rem;
    padding: 10px 0;
    line-height: 20px;
  }
  .login__inputs {
    row-gap: 1.25rem;
    margin-bottom: .75rem;
  }
  .login__input {
    padding: 1rem;
    font-size: var(--small-font-size);
  }
  .login__input:focus, 
  .login__input:valid {
    border: 2.5px solid var(--first-color);
  }
  .login__button {
    padding-block: 1rem;
    margin-bottom: 1.25rem;
  }
  .login__button-ghost {
    border: 2.5px solid var(--first-color);
  }
}


/* body > div.alert.alert-warning.alert-important {
  font-size: 1.2rem;
  position: absolute;
  top: 9%;
  right: 71%;
  z-index: 9;
  background: salmon;
  padding: 28px 60px;
  color: #000;
  width: 400px;
  text-align: center;
} */

#alertLogin {
  background-color: #00000085;
  border-radius: 20px;
  color: #7ddaff;
  /* color: #5affc0; */
  margin: 10px 0 0 0;
  padding: 10px 5px;
  text-align: center;
  font-weight: 500;
}

/* #alertSuccess {
  background-color: #00000085;
  border-radius: 20px;
  color: #00ff40;
  margin: 10px 0 0 0;
  padding: 10px 5px;
  text-align: center;
  font-weight: 500;
} */