html {
   height: -webkit-fill-available;
}
body {
   height: -webkit-fill-available;
   overflow: hidden;
}
#copyright {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 10vh;
   border-top: solid 3px #000;
   position: absolute;
   bottom: 0;
   width: 100%;
}
.alert {
   color: red;
}
.login_parent {
   overflow: hidden;
   width: 100vw;
   height: 100vh;
}
.login_parent > img{
   display: block;
   position: absolute;
   width: 100%;
   height: 100%;
}
.login_container {
   display: flex;
   flex-direction: row;
   top: calc(50vh - 200px);
   left: calc(50vw - 350px);
   position: absolute;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   width: 700px;
   height:  400px;
   border-radius: 7px;
}
.login_box {
   flex: 1;
   display: block;
   background-color: #fff;
   padding: 5vh;
   border-radius: 0px 7px 7px 0px;
}
.login_design {
   border-radius: 7px 0px 0px 7px;
   flex: 2;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--main-color);
}
.login_design .login_design__logo {
   width: 50%;
}
.login_design .login_design__logo h3 {
   font-size: 30px;
   color: #000;
}
.login_design .login_design__logo img {
   width: 100%;
}
.header {
   text-align: center;
   width: 100%;
   padding: 1vh;
   font-size: 11px;
}
.login {
   width: 100%;
   padding: 1vh;
}
.login input {
   border-radius: 10px;
   border: none;
   background-color: #edf4f3;
   color: #000;
   padding: 1vh;
   margin: 1vh 0 1vh 0;
   width: 100%;
}
.login button {
   background-color: var(--main-color);
   border-radius: 10px;
   padding: 1vh;
   border: none;
   margin-top: 1vh;
   cursor: pointer;
}
.login a {
   font-size: 11px;
}

@media only screen and (max-width: 710px) {
   .login_container {
      flex-direction: column;
      top: calc(50vh - 25vh);
      left: calc(50vw - 37.5vw);
      width: 75vw;
      height: 50%;
   }
   .login_box {
      border-radius: 0px 0px 7px 7px;
      background-color: #fff;
      padding: 5vh;
   }
   .login_design {
      border-radius: 7px 7px 0px 0px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--main-color);
   }
   .login_design .login_design__logo {
      width: 50%;
   }
   .login_design .login_design__logo img {
      width: 100%;
   }
}