/* Auth pages (login, password request, password reset) - split-screen layout */

html, body {
  height: 100%;
}

body.branded-split-page {
  margin: 0;
}

.branded-split {
  display: flex;
  min-height: 100vh;
}

.branded-split__brand {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3em 2em;
  background: linear-gradient(160deg, #00b5ad 0%, #00827c 100%);
  color: #ffffff;
  text-align: center;
}

.branded-split__logo-wrap {
  background: #ffffff;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5em;
}

.branded-split__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.branded-split__title {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.4em;
}

.branded-split__tagline {
  font-size: 1.05em;
  max-width: 320px;
  opacity: 0.9;
  margin: 0;
}

.branded-split__form-pane {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em;
  background: #f7f8fa;
}

.branded-split__form-wrap {
  width: 100%;
  max-width: 380px;
}

.branded-split__heading {
  margin-bottom: 1.2em;
}

.branded-split__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.5em;
}

.branded-split__options .ui.checkbox {
  line-height: 1;
}

.branded-split__forgot-link {
  color: #00827c;
  font-weight: 600;
  text-decoration: none;
}

.branded-split__forgot-link:hover {
  color: #00b5ad;
  text-decoration: underline;
}

.branded-split__back-link {
  display: inline-block;
  margin-top: 1em;
  color: #00827c;
  font-weight: 600;
  text-decoration: none;
}

.branded-split__back-link:hover {
  color: #00b5ad;
  text-decoration: underline;
}

.branded-split__error-code {
  font-size: 3.5em;
  font-weight: 700;
  color: #00827c;
  line-height: 1;
  margin: 0 0 0.2em;
}

.branded-split__error-text {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.8em;
}

@media (max-width: 767px) {
  .branded-split {
    flex-direction: column;
  }

  .branded-split__brand {
    flex: 0 0 auto;
    padding: 2em 1.5em;
  }

  .branded-split__logo-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 1em;
  }

  .branded-split__logo {
    width: 72px;
    height: 72px;
  }

  .branded-split__title {
    font-size: 1.5em;
  }

  .branded-split__form-pane {
    flex: 1 1 auto;
    align-items: flex-start;
    padding: 2em 1.5em;
  }
}
