.auth-page {
  padding: 2.5rem 1rem 4rem;
  background: #f4f7f5;
}

.auth-page__section {
  /*max-width: 1120px;*/
}

.auth-layout {
  overflow: hidden;
  border: 1px solid #cfdae2;
  border-radius: 20px;
  background: #fff;
}

.auth-layout__form-column,
.auth-layout__context-column {
  display: flex;
}

.auth-form-panel,
.auth-context {
  width: 100%;
}

.auth-form-panel {
  padding: 1.5rem;
  background: #fff;
}

.auth-form-header {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #cfdae2;
}

.auth-eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: #22577a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.auth-form-header h1,
.auth-context h2 {
  margin: 0;
  font-weight: 900;
}

.auth-form-header h1 {
  color: #102538;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.auth-form-header p,
.auth-context header > p {
  margin: 0.7rem 0 0;
  line-height: 1.6;
}

.auth-form-header p {
  color: #41566a;
}

.auth-account-switch {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  margin: 1.25rem 0;
  padding: 0.75rem;
  border: 1px solid #cfdae2;
  border-radius: 8px;
  color: #22577a;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.auth-account-switch > i:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: rgba(72, 166, 44, 0.14);
  color: #48a62c;
}

.auth-account-switch > i:last-child {
  color: #48a62c;
}

.auth-account-switch:hover,
.auth-account-switch:focus {
  border-color: #22577a;
  color: #22577a;
  text-decoration: none;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-field label {
  display: block;
  margin-bottom: 0.4rem;
  color: #41566a;
  font-size: 0.76rem;
  font-weight: 800;
}

.auth-field .required {
  margin-left: 0.15rem;
  color: #22577a;
}

.auth-field .form-control {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #b8c8d3;
  border-radius: 8px;
  background: #fff;
  box-shadow: none !important;
  color: #102538;
  font-size: 0.95rem;
}

.auth-field .form-control:focus {
  border-color: #22577a;
  outline: 2px solid rgba(34, 87, 122, 0.14);
}

.auth-form-options {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.auth-remember {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  margin: 0;
  color: #41566a;
  font-size: 0.84rem;
  cursor: pointer;
}

.auth-remember input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #48a62c;
}

.auth-form-options > a,
.auth-secondary-link {
  color: #22577a;
  font-size: 0.84rem;
  font-weight: 800;
}

.auth-form-options > a:hover,
.auth-form-options > a:focus,
.auth-secondary-link:hover,
.auth-secondary-link:focus {
  color: #48a62c;
}

.auth-submit {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid #48a62c;
  border-radius: 8px;
  background: #48a62c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-submit:hover,
.auth-submit:focus {
  border-color: #22577a;
  background: #22577a;
}

.auth-secondary-link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.auth-info,
.auth-error-summary {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.auth-info {
  border: 1px solid rgba(48, 99, 134, 0.3);
  background: rgba(48, 99, 134, 0.08);
  color: #41566a;
}

.auth-info i {
  margin-top: 0.15rem;
  color: #306386;
}

.auth-info p {
  margin: 0;
}

.auth-error-summary {
  margin-bottom: 1rem;
  border: 1px solid rgba(186, 26, 26, 0.28);
  background: rgba(186, 26, 26, 0.08);
  color: #ba1a1a;
}

.auth-error-summary i {
  margin-top: 0.15rem;
}

.auth-form label.error {
  display: block;
  margin: 0.35rem 0 0;
  color: #ba1a1a;
  font-size: 0.76rem;
  font-weight: 700;
}

.auth-context {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 1.5rem 1.5rem 0;
  background: #2c333e;
  color: #fff;
}

.auth-eyebrow--dark {
  color: #91d37c;
}

.auth-context h2 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}

.auth-context header > p {
  color: #dce5eb;
  font-size: 0.9rem;
}

.auth-context__items {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-context__items article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-context__items article > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #48a62c;
  color: #fff;
}

.auth-context__items h3 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.auth-context__items p {
  margin: 0;
  color: #dce5eb;
  font-size: 0.8rem;
  line-height: 1.5;
}

.auth-context__image {
  display: flex;
  min-height: 190px;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  overflow: hidden;
}

.auth-context__image img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: center bottom;
}
.public-breadcrumbs {
    background: #f4f7f5 !important;
}

@media (min-width: 768px) {
  .auth-page {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .auth-form-panel,
  .auth-context {
    padding-top: 2rem;
  }

  .auth-form-panel {
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
  }

  .auth-context {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (max-width: 991.98px) {
  .auth-layout__context-column {
    border-top: 1px solid #cfdae2;
  }
}

@media (min-width: 992px) {
  .auth-layout__context-column {
    border-left: 1px solid #cfdae2;
  }
}

@media (max-width: 575.98px) {
  .auth-page {
    padding: 1.5rem 0.75rem 3rem;
  }

  .auth-layout {
    border-radius: 14px;
  }

  .auth-form-panel,
  .auth-context {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .auth-form-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-context__image {
    min-height: 150px;
  }
}
