:root {
  --primary: #14A4DE;
}

body.login-container {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  background: #fff;
  text-underline-offset: 3px;
}

h1 {
  font-size: 40px;
  line-height: 48px;
  font-family: "metropolisblack", sans-serif;
}

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

.font-size-32 {
  font-size: 32px;
  line-height: 40px;
}

.min-height-100vh {
  min-height: 100vh;
}

.form-group {
  margin-bottom: 24px;
}

.form-group.submit-group {
  margin-top: 40px;
}

.form-block input {
  height: 48px;
  border-color: #b6b6b6;
}

.form-control:focus {
  border-color: var(--primary);
}

.form-block label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  font-family: 'metropolismedium', sans-serif;
}

.btn-primary {
  padding: 11px;
  line-height: 24px;
  font-family: 'metropolismedium', sans-serif;
  background: linear-gradient(88.96deg, var(--primary) -3.35%, #009767 128.55%);
  border-radius: 4px;
}

.btn-primary:hover {
  background: linear-gradient(88.96deg, var(--primary) -3.35%, var(--primary) 128.55%);
}

.forgot-password {
  position: absolute;
  right: 0;
}

.forgot-password a {
  color: #000;
  font-size: 12px;
  text-decoration: underline;
  font-family: 'metropolismedium', sans-serif;
}

.login-container footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: 0 10px;
  border-top: 1px solid #DFDFDF;
  color: #9E9E9E;
  font-size: 12px;
}

.login-container footer a {
  color: #9E9E9E;
  text-decoration: underline;
}

.right-side {
  background: var(--primary);
  color: #fff;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.right-side:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  max-height: 600px;
  z-index: 1;
  background: url('/assets/backend/img/OpenAfricaPower-Illustration.png') top right no-repeat;
  background-size: contain;
}

.right-side img {
  max-width: 300px;
}

.right-side:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 275px;
  width: 100%;
  background: url('/assets/backend/img/bg-lines.png') bottom center no-repeat;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.alert {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .right-side {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .right-side:before {
    display: none;
  }

  .right-side img {
    margin: 0 auto;
    display: block;
  }

  h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .submit-group {
    margin-bottom: 64px;
  }

  .login-container footer {
    padding: 12px 0;
  }
}
