* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

body, input, button {
  font-family: "Lato", sans-serif;
}

#login-wrapper {
  background: linear-gradient(135deg, #011D4F 0%, #3880AB 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#login-wrapper-provider-logo {
  width: 80vw;
  max-width: 300px;
  margin-bottom: 30px;
}

#login-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 200px;
  border-radius: 1rem;
}

#login-form-container {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  background-color: #E7E7E7;
  padding: 48px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#login-form__header {
  text-align: center;
}
#login-form__header .login-form__welcome-icon {
  font-size: 4rem;
}
#login-form__message {
  text-align: center;
  margin-bottom: 1.5rem;
}
#login-form__controls {
  margin-bottom: 1.5rem;
}
#login-form__controls > div {
  margin-bottom: 0.6rem;
}
#login-form__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#login-form h1 {
  margin-top: 0.5rem;
  color: #222;
}
#login-form .input-wrapper {
  display: flex;
  align-items: center;
  background-color: #FFF;
  border-radius: 5rem;
}
#login-form .input-wrapper__icon {
  color: #888;
  padding: 0.5rem 0.7rem 0.5rem 1rem;
}
#login-form .input-wrapper input {
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  padding: 0.5rem 1rem 0.5rem 0.7rem;
  background: none;
  border: none;
  width: 100%;
  font-size: 1.3rem;
}
#login-form .input-wrapper input:focus {
  outline-color: #888;
}
#login-form a {
  color: #2b6e96;
  text-decoration: none;
  cursor: pointer;
}
#login-form button.btn, #login-form a.btn {
  text-decoration: none;
  font-size: 1.3rem;
  border-radius: 5rem;
  border: 0;
  color: #FFF;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}
#login-form button.btn i, #login-form a.btn i {
  padding-left: 0.3rem;
}
#login-form button.btn.btn-success, #login-form a.btn.btn-success {
  background-color: #3DA240;
}
#login-form button.btn.btn-primary, #login-form a.btn.btn-primary {
  background-color: #2b6e96;
}

.powered-by-container {
  text-align: center;
}

#login-hero .powered-by-container {
  margin-top: 5rem;
  display: block;
}

#login-form .powered-by-container {
  margin-top: 3rem;
  display: none;
}

img.login-hero-engager-logo {
  width: 50%;
  min-width: 200px;
}

#login-hero-container {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: #FFF;
  padding: 48px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#login-hero {
  text-align: center;
}
#login-hero #login-hero-practice-name {
  font-size: 3rem;
  font-variant: small-caps;
}
#login-hero img {
  max-width: 100%;
  max-height: 250px;
}

footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6666666667);
}

@media screen and (max-width: 863px) {
  footer {
    position: initial;
    margin-top: 20px;
  }
  #login-container {
    max-width: 400px;
  }
  #login-form-container {
    padding: 2rem;
    order: 1;
    border-radius: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
  #login-form__header {
    text-align: center;
  }
  #login-form__header .login-form__welcome-icon {
    font-size: 3rem;
  }
  #login-form__actions {
    flex-direction: column;
  }
  #login-form__actions__forgot-password {
    order: 2;
  }
  #login-hero-container {
    padding: 2rem;
    order: 0;
    border-radius: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
  #login-hero .powered-by-container {
    display: none;
  }
  #login-form .powered-by-container {
    display: block;
  }
  #login-hero img#login-hero-engager-logo {
    width: 40%;
  }
  #login-hero img {
    max-width: unset;
    width: 60%;
    min-width: 200px;
    max-height: 200px;
  }
}/*# sourceMappingURL=style.css.map */