.custom-login {
  display: flex;
  flex-direction: column;
}

.custom-login .image {
  height: 100vh;
}

.custom-login .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}

.custom-login .login {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  height: 100vh;
}

.login-container .login-content {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100vh;
}

.form-container {
  width: 100%;
  padding-left: 8rem;
  padding-right: 8rem;
}

.form-container form {
  width: 100%;
  background-color: white;
  border-radius: 0.25rem;
  padding: 2rem 2rem;
}

form .logo {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}

form .logo .logo-image {
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

form .username {
  margin-bottom: 1rem;
}

form .password {
  margin-bottom: 1.5rem;
}

.input-label {
  display: block;
  color: rgba(74, 85, 104, 1);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-input {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-width: 1px;
  border-radius: 0.25rem;
  width: 100%;
  padding: 0.75rem 0.5rem;
  color: rgba(74, 85, 104, 1);
  line-height: 1.25rem;
}

.form-input:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

form .submit-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

form .submit-container button {
  background-color: rgba(66, 153, 225, 1);
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  border: none;
}

form .submit-container button:hover {
  background-color: #2b6cb0;
  background-color: rgba(43, 108, 176, 1);
}

form .submit-container button:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.features-list {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column-reverse;
}

.feature-left {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.feature-left .text-heading {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.feature-left .text-content {
  width: 100%;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.feature-right {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.feature-right .image-container {
  margin: auto;
}

.feature-right .image-container img {
  height: 16rem;
  padding: 0.5rem;
  max-width: 100%;
}

@media (max-width: 639px) {
  .login-container {
    width: 100%;
  }

  .form-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 640px) {
  .features-list.container-right {
    flex-direction: row;
  }

  .features-list.container-left {
    flex-direction: row-reverse;
  }

  .login-container {
    width: 100%;
    padding-top: 1rem;
  }

  .feature-left {
    width: 50%;
    padding-top: 1rem;
  }

  .feature-right {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .features-list.right {
    flex-direction: row;
  }

  .features-list.container-left {
    flex-direction: row-reverse;
  }

  .login-container {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .login-container {
    width: 50%;
  }
}

@media (min-width: 1280px) {
  .login-container {
    width: 50%;
  }
}

