html {
  color: #000;
}

body {
  margin: 0;
  padding: 0;
}

#app {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-wrap: wrap;
  overflow: auto;
}

.login-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc(100% - 520px);
  position: relative;
  z-index: 1;
}

.login-bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  background: -webkit-linear-gradient(bottom, #000, #6eb3b3);
  background: -o-linear-gradient(bottom, #000, #6eb3b3);
  background: -moz-linear-gradient(bottom, #000, #6eb3b3);
  background: linear-gradient(bottom, #000, #6eb3b3);
  opacity: 0;
  /* background: #4fbebe;
  background: -webkit-linear-gradient(bottom, #4fbebe, #6eb3b3);
  background: -o-linear-gradient(bottom, #4fbebe, #6eb3b3);
  background: -moz-linear-gradient(bottom, #4fbebe, #6eb3b3);
  background: linear-gradient(bottom, #4fbebe, #6eb3b3);
  opacity: .7; */
  /* background: #e8519e;
  background: -webkit-linear-gradient(bottom, #e8519e, #c77ff2);
  background: -o-linear-gradient(bottom, #e8519e, #c77ff2);
  background: -moz-linear-gradient(bottom, #e8519e, #c77ff2);
  background: linear-gradient(bottom, #e8519e, #c77ff2);
  opacity: .5; */
}

.container {
  background: #fff;
  position: relative;
  padding: 0 50px;
  width: 520px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 520px) {
  .container {
    padding: 0 15px;
  }
}

.logo {
  height: auto;
  width: 80%;
  max-width: 300px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}


.login-text {
  margin-bottom: 15px;
}

label {
  font-size: 16px !important;
  font-weight: 400;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.3;
}

.btn {
  font-size: 16px !important;
  height: 48px !important;
  line-height: 24px !important;
  margin-top: 15px;
  width: 100%;
}

#error-caption {
  line-height: 24px !important;
  font-size: 16px !important;
  color: #E31313 !important;
  margin-top: 8px;
}

.forgot-caption {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: block;
  color: #3e9920;
  margin-top: 20px;
}

.spinner-border {
  width: 1.7rem;
  height: 1.7rem;
}