.auth {
  display: flex;
  height: 100vh;
  width: 100%;
}
.auth-container {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-950);
  width: 50%;
  height: 100%;
}
.auth-image {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-950);
  width: 50%;
  height: 100%;
}
.auth-image img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

/*  */
.auth-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 320px;
}

.auth-form-header {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 3rem;
}
.auth-form-headings {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.auth-form-title {
  font: var(--f-d-h6);
  color: var(--neutral-100);
}

.auth-form-subtitle {
  font: var(--f-t-s);
  color: var(--neutral-400);
}
.auth-form-subtitle a {
  color: var(--neutral-100);
  text-decoration: none;
}
.auth-form-subtitle a:hover {
  text-decoration: underline;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.auth-form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth-form-footer p {
  font: var(--f-t-s);
  color: var(--neutral-400);
}
.auth-form-footer a:not(.btn) {
  color: var(--neutral-100);
  text-decoration: none;
}
.auth-form-footer a:not(.btn):hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .auth-container{
    width: unset;
  }
  .auth {
    flex-direction: column;
  }
  .auth-image {
    display: none;
  }
}
