html,
body {
  margin: 0px;
  font-family: "Calibre", Arial;
  color: #373a4b;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.6px;
}

.btn {
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 10px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Calibre", Arial;
}

.btn-primary {
  background-color: #13b1d0;
  color: white;
  border-radius: 5px;
  border: none;
  transition: 0.4s all;
  background-size: 100% 60px;
  background-position: 0 0px;
  transition: 0.4s all;
}

.btn-primary:hover {
  background-color: #13b1d0;
}

.background {
  background: #373a4b;
  height: 100vh;
  width: 100vw;
  position: absolute;
}

.login-container {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-container .logo {
  width: 110px;
  margin-bottom: 35px;
}

.login-container .logo polygon,
.login-container .logo path {
  fill: white;
}

.login-container .form-group {
  margin-top: 12px;
  margin-bottom: 8px;
}

.login-container .form {
  margin-bottom: 35px;
  margin-top: 35px;
}

.login-container .form .form-group:first-child {
  margin-bottom: 25px;
}

.login-container .submit {
  margin-bottom: 55px;
}

.box {
  background-color: white;
  padding: 35px;
  padding-top: 25px;
  padding-bottom: 25px;
  box-sizing: border-box;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.160156);
  border-radius: 12px;
  width: 420px;
}

.card.box .card-header {
  text-align: center;
  color: #888787;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.2px;
}

.card.box .card-footer {
  text-align: center;
  color: #888787;
  font-size: 14px;
}

.card.box .card-footer a {
  text-decoration: none;
  color: #13b1d0;
}

label {
  display: block;
  font-size: 16px;
  color: #373a4b;
  margin-bottom: 5px;
}

input {
  padding: 8px;
  padding-left: 12px;
  border: 1px solid #CBCBCB;
  color: #373a4b;
  font-family: "Calibre", Arial;
  font-size: 16px;
  box-sizing: border-box;
}

input::-moz-placeholder {
  color: #B0B0B0;
  letter-spacing: 0.6px;
}

input:-ms-input-placeholder {
  color: #B0B0B0;
  letter-spacing: 0.6px;
}

input::placeholder {
  color: #B0B0B0;
  letter-spacing: 0.6px;
}

input:focus {
  border-color: #13b1d0;
  box-shadow: #13b1d0 0px 0px 4px;
  outline: none;
}

input[type=checkbox] {
  margin: 0px;
  border-radius: 0px;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.2;
  margin-bottom: 0px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px #888787 solid;
  border-radius: 0px;
  transition: 0.4s all;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container .checkmark:hover {
  background-color: rgba(19, 177, 208, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: rgba(19, 177, 208, 0.5);
  border-color: #13b1d0;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgotpassword {
  margin-left: auto;
  color: #13b1d0;
  text-decoration: none;
  font-size: 14px;
}

.invalid-feedback {
  margin-top: 8px;
  color: #13b1d0;
}

.alert {
  margin-top: 25px;
  text-align: center;
}

.alert.alert-success {
  color: #4dc0b5;
}

.display-flex {
  display: flex;
  align-items: center;
}

.text-center {
  text-align: center;
}

.small-text {
  font-size: 14px;
}

.text-midgrey {
  color: #888787;
}

.margin-top-25 {
  margin-top: 25px;
}

.width-100 {
  width: 100%;
}

.fadeup {
  -webkit-animation: fadeup;
          animation: fadeup;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.fadeup-3 {
  -webkit-animation: fadeup;
          animation: fadeup;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes fadeup {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeup {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.powered_by {
  color: #fff;
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 18px;
}

.powered_by_logo polygon,
.powered_by_logo path {
  fill: #fff;
}

