/* Scss Document */
body {
  background-color: #f5f5f5;
}

body,
#wrapper,
main,
.loginWrapper {
  height: 100%;
}

strong {
  font-weight: bold;
}

.btnArea {
  margin-top: 20px;
}

.input-group {
  width: 50%;
  padding: 30px;
  border-left: none;
}
.input-group:last-child {
  border-left: 2px solid #aaa;
}
@media screen and (max-width: 768px) {
  .input-group {
    width: 100%;
    padding: 10px 10px 30px;
  }
  .input-group:last-child {
    padding: 30px 10px 10px;
    border-top: 2px solid #aaa;
    border-left: none;
  }
}

.loginWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  position: relative;
  padding: 0 10px;
}
.loginWrapper::before, .loginWrapper::after {
  min-height: 20px;
  content: "";
  display: block;
  box-flex: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.loginBox {
  margin: auto;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 40px;
  border: 1px solid #bbb;
  border-radius: 0.25rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .loginBox {
    padding: 15px;
  }
}

.loginHead {
  padding: 0 !important;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .loginHead {
    margin-bottom: 15px;
  }
}
.loginHead h1 {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .loginHead h1 {
    width: 150px;
  }
}

.loginBody {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .loginBody .flexBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.loginBody .registration p {
  margin-bottom: 10px;
}
.loginBody .registration p:last-child {
  margin-bottom: 0;
}
.loginBody .registration .btn-center a {
  font-size: 1.125rem;
  padding: 10px 25px;
  margin-bottom: 20px;
}
.loginBody .user-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.loginBody .user-lead .linkBox {
  margin-top: auto;
  background-color: lavenderblush;
  border: 2px solid #003D79;
  color: red;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.logintable {
  margin-bottom: 30px;
}

.resetting .res-lead {
  text-align: center;
  font-size: 0.875rem;
}

.footerArea {
  margin-top: 30px;
}