.auth-main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--white);
}

.auth-main__left {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  gap: 4rem;
}

.auth-main__left .auth-main__left-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
  max-width: 350px;
}

.auth-logo svg {
  height: 24px;
  width: auto;
  color: var(--app-color-primary);
}

.auth-headings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.auth-headings .title {
  font: var(--f-d-h5);
  color: var(--neutral-800);
}
.auth-headings .subtitle {
  font: var(--f-t-m);
  color: var(--neutral-600);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-main__right {
  height: 100%;
  display: flex;
  padding: 2rem;
}
.auth-main__right img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 1rem;
  background-color: var(--neutral-200);
}

.auth-wrapper p {
  font: var(--f-t-m);
  color: var(--neutral-600);
}
.auth-wrapper .separator {
  height: 1px;
  background-color: var(--neutral-200);
  width: 100%;
  max-width: 250px;
  place-self: center;
}
