.login-bg-img {
  background-image: url("/images/bgBoat.png");
  min-height: 100vh;
  background-size: 100% 100%;
  background-position: top;
  background-attachment: fixed;
}

.bg-login-form {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(7px);
  color: white;
  max-width: 550px;
  /* min-width: 35vw; */
  font-family: "Quicksand";
}

input.login-input {
  border-bottom: 2px solid white;
}

.blue-border-bottom {
  border-bottom: 2px solid;
}

.border-gradient-blue {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(0, #2196f3 0.01%, #1c639c 100%);
  border-image-slice: 1;
}

.login-button {
  background-color: #2196f3;
  color: white;
  padding: 10px;
  border-radius: 3px;
}

.white-border-bottom {
  border-bottom: 1px solid white;
}

.flag-style {
  height: 14px;
  width: 28px;
}

.border-radius-3 {
  border-radius: 3px;
}

.font-size-7 {
  font-size: 7px;
}

.margin-right-captcha {
  margin-right: 3rem;
}

.social-icons {
  height: 23px;
  width: 23px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  height: 25px;
  width: 25px;
  margin-right: 10px;
  border-radius: 5px;
}

.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

#recaptcha > div > div {
  transform: scale(0.72);
}

#recaptcha > div {
  transform: translateX(-37px);
}

#recaptcha input {
  transform: scale(0.8);
}

.forget-password-input {
  outline: none;
  border: none;
  margin: 10px 0 15px;
  padding: 5px 10px;
  width: 80%;
  background-color: #10101010;
  font-weight: 300;
  color: white;
  border-bottom: 1px solid grey;
  /* border-radius: 8px; */
}

/* password tooltip */
.password-tooltip-info {
  position: relative;
  display: block;
  /* background-color: rgba(0, 0, 0, 1); */
}

.password-tooltip-info::after {
  content: "Password should contain atleast \a    -One uppercase letter\a    -One lowercase letter\a    -One special character\a    -Six characters";
  top: -108px;
  position: absolute;
  /* width: 200px; */
  color: #fff;
  padding: 10px;
  border-radius: 3px;
  background-color: #171414;
  font-size: 11px;
  left: -85px;
  opacity: 0;
  white-space: pre;
}
.password-tooltip-info:hover::after {
  opacity: 1;
}

.password-tooltip-info::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -8px;
  border-top: 8px solid #171414;
  left: 0px;
  opacity: 0;
}

.password-tooltip-info:hover::before {
  opacity: 1;
}

@media screen and (max-width: 576px) {
  .password-tooltip-info::after {
    left: -160px;
  }
}

/* confirm password tooltip */
.confirm-password-tooltip-info {
  position: relative;
  display: block;
}

.confirm-password-tooltip-info::after {
  content: "Should be same as password";
  top: -40px;
  position: absolute;
  color: #fff;
  padding: 10px;
  border-radius: 3px;
  background-color: #171414;
  font-size: 11px;
  left: -85px;
  opacity: 0;
  white-space: pre;
}
.confirm-password-tooltip-info:hover::after {
  opacity: 1;
}

.confirm-password-tooltip-info::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -6px;
  border-top: 8px solid #171414;
  left: 0px;
  opacity: 0;
}

.confirm-password-tooltip-info:hover::before {
  opacity: 1;
}

@media screen and (max-width: 576px) {
  .confirm-password-tooltip-info::after {
    left: -135px;
  }
}

@media screen and (max-width: 768px) {
  #recaptcha > div {
    transform: translateX(-62px);
  }
}

@media screen and (max-width: 456px) {
  .bg-login-form {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    min-height: 100vh;
    border-radius: 0;
  }

  .login-bg-img {
    align-items: start !important;
  }

  .icon-container {
    flex-wrap: wrap;
  }

  div.margin-left-null {
    margin-left: 0 !important;
  }

  #recaptcha > div {
    transform: translateX(-55px);
  }

  .border-gradient-blue {
    border: none;
    font-weight: 600;
  }

  input.login-input {
    border-bottom: none;
    background-color: #ffffff30;
    border-radius: 5px;
  }

  input:-webkit-autofill,
  input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
  }
  input[data-autocompleted] {
    background-color: transparent !important;
  }

  .sign-up-linl-font {
    font-size: 14px;
  }
}

@media screen and (max-width: 406px) {
  #recaptcha > div {
    transform: translateX(-42px);
  }
}

@media screen and (max-height: 560px) {
  .bg-login-form {
    height: 100vh;
    overflow-y: scroll;
  }
}
