.account {
  display: flex;
  gap: 0 !important;
  margin: 3.2rem 0;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px -1px #0000001a;
}
.account .captcha {
  margin-left: auto;
  margin-right: auto;
}
.account .captcha p {
  white-space: nowrap;
}
.account__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4.8rem;
  background-color: var(--gray-50);
}
.account__right {
  width: 100%;
  background-image: url("/themes/default/userBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 30em) {
  .account__right {
    height: 0;
  }
}
.account__logo {
  display: inline-block;
  height: 4.8rem;
  margin-bottom: 1.6rem;
}
.account__title {
  font-weight: normal;
  font-size: 3.2rem;
}
.account__message {
  color: var(--gray-700);
  margin-bottom: 2.4rem;
}
.account__form-container {
  padding: 0 3.2rem;
  margin-bottom: 3.2rem;
}
.account__forgotten {
  color: var(--gray-700);
}
.account__forgotten input {
  margin-right: 1.2rem;
}
.account__btn {
  width: 100%;
  background-color: #0ea5e9;
  padding: 0.8rem 1.6rem;
  color: var(--gray-50);
}

.account__btn:hover {
  background-color: #0284c7;
}
.account__cta {
  font-size: 1.4rem;
  color: var(--gray-700);
}
.account__cta-link,
.account__cta-link:link,
.account__cta-link:visited {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  text-underline-offset: 4px;
  transition: all 0.2s ease-in-out;
}

.account__cta-link:hover {
  color: var(--gray-900);
}

.signupmsg {
  max-width: 75ch;
  margin: 4.8rem auto;
}
