html {
  background-color: #b6d1d1;
}
.login-container {
    width: 100%;
    height: 100%;
    background-color: #b6d1d1;
}
.login-container .login-block {
    width: 100%;
    max-width: 1000px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
login-box {
    display: block;
    width: 360px;
    z-index: 1000;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
login-box img.herobox {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 720px) {
    login-box {
      display: block;
      width: 100%;
      height: 100%;
      z-index: 1000;
      border: 0px;
      border-radius: 0px;
      box-shadow: 0px;
      -webkit-box-shadow: 0px;
      -moz-box-shadow: 0px;
      overflow: scroll;
      background-color: #fff;
    }
    login-box img.herobox {
      width: 100%;
      height: auto;
    }
}
login-box box-content {
    display: block;
    margin: 30px;
}
login-box box-content text-title, login-box box-content text-subtitle {
  display: block;
  text-align: left;
  letter-spacing:1px;
}
login-box box-content text-title {
  font-size: 40px;
  /* font-weight: bold; */
  font-family: var(--ui-main-font-family-bold);
  color: #27ADE1;
  padding-left:10px;
  padding-left:10px;
}
login-box box-content text-subtitle {
  font-size: 14px;
  font-family: var(--ui-main-font-family-regular);
  color: #ADE0F4;
  padding-left:10px;
}
login-box box-content button-block {
  font-family: var(--ui-main-font-family-bold);
  display: block;
  margin-top: 5px;
}
box-input {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}
box-input input {
    text-align: center;
    display: block;
    height: 50px;
    font-size: 18px;
    font-family: var(--ui-main-font-family-regular);
    color: #002953;
    line-height: 50px;
    background-clip: padding-box;
    border: 0px !important;
    background-color: #e1f2fa;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 25px;
    margin: 10px 0px;
    padding: 10px;
    overflow: visible;
    word-wrap: break-word;
}
box-input input::placeholder {
    color: #ffffff;
}
box-input button {
    display: block;
    height: 50px;
    font-size: 18px;
    font-family: var(--ui-main-font-family-bold);
    color: #FFFFFF;
    border: 1px solid #ebebeb !important;
    background-color: #27ADE1;
    border-radius: 25px;
    margin: 10px 0px;
    padding: 10px;
    overflow: visible;
    word-wrap: break-word;
}
box-input button.reverse {
    color: #27ADE1;
    border: 1px solid #27ADE1 !important;
    background-color: #FFFFFF;
}
.herobox-logo{
    width: 60px ;
    position:absolute;
    top:30px;
    left:30px;
    z-index: 10;
}
.fgpassword {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-family: var(--ui-main-font-family-bold);
  color: #27ADE1;
  cursor: pointer;
}