body {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  font-family: Roboto, sans-serif;
  overflow: hidden;
}
* { box-sizing: border-box; }
a { text-decoration: none; cursor: pointer; }
i { padding: 5px; }
.main {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: #f4f4f4;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.holder {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 1316px;
  max-height: 763px;
  border: none;
  border-radius: 10px;
  background: url("../images/login/login-back.jpg");
  background-position: -180px center;
  background-repeat: no-repeat;
  background-size: cover;
}
.panel {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  width: 34%;
  max-width: 428px;
  min-width: 320px;
  height: 100%;
  border-radius: 0 10px 10px 0;
  background-color: white;
  text-align: center;
  overflow: hidden;
}
.panel .image { position: relative; margin: 10px auto; width: 104px; height: 120px; display: block; }
.panel .beeSign { position: relative; margin: 0 auto; height: 50px; color: #0c2477; font-family: Roboto-Regular; font-size: 2.5em; font-weight: bold; display: block; }
.panel form { position: relative; margin: 20px auto 0 auto; height: calc(100% - 210px); display: block; }
.panel .row { position: relative; width: 100%; margin-bottom: 0; display: inline-block; }
.panel .row .col { position: relative; margin-bottom: 10px; width: 100%; border: none/*0px solid #e6e6e6*/; border-radius: 5px; display: block; }
.panel .row .col:last-child { padding-right: 10px; text-align: right; cursor: pointer; }
.panel .row:last-child { position: absolute; left: 0; bottom: 0; margin-bottom: 30px; }
input {
  padding: 0 25px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 7px;
  background: #f4f4f4;
  color: #30302f;
  text-align: center;
  font-family: Roboto-Regular;
  font-size: 14px;
  display: block;
  outline: none;
}
input::-webkit-input-placeholder { color: #30302f; }
input::-moz-placeholder { color: #30302f; }
input:-ms-input-placeholder { color: #30302f; }
a.forget { position: relative; right: 0; font-family: Roboto-Bold; font-size: 12px; font-style: normal; font-weight: normal; color: #30302f; white-space: nowrap; }
button { border: none; background: transparent; outline: none !important; }
.login {
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 7px;
  background: #54b862;
  font-family: Roboto-Regular;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  cursor: pointer;
}
.login:hover { background-color: #09861b; /* background-image: url(../images/login/pattern2.png); */ }
span.noacc {
  position: relative;
  color: #707070;
  font-family: Roboto-Regular;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 1px;
}
.oacc {
  position: relative;
  margin-top: 10px;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border: 1px solid #2f302e;
  border-radius: 7px;
  background: transparent;
  font-family: Roboto-Regular;
  font-size: 20px;
  color: #000;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  cursor: pointer;
}
.oacc:hover { background-color: #0c2477; color: #fff;/* background-image: url(../images/login/pattern2.png); */ }
.row.auth {
  position: relative !important;
  margin-bottom: unset !important;
}
.panel .row.auth .col:last-child { padding-right: 0; }
.qrCode{width: 160px; margin: 10px  auto;}
.row.auth.qr .title{    font-size: 14px;}
@media (min-width: 990px){
  .panel { padding: 2% 5% 4% 5%; }
  .panel .row { margin-bottom: 20%; }
  .panel .row:last-child { margin-bottom: 20%; }
  .oacc { margin-top: 20px; }
  input { text-align: left; }
}