.auth-card {
  margin: 40px auto;
  padding: 24px;
  background: var(--color-white);
  width: 100%;
}

.auth-card h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.form-row {
  margin-bottom: 14px;
}
.form-row label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.form-row input:focus {
  border-color: #111;
}

.help {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

.error {
  font-size: 12px;
  color: #b00020;
  margin-top: 6px;
}

.button {
  padding: 10px 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.button.ghost {
  background: #fff;
  color: #111;
  border-color: #d1d5db;
}

p .ghost {
  text-align: center;
}

.inline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.preview {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: none;
  border: 1px solid #eee;
}

.form-alert {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #fde047;
  background: #fef9c3;
  color: #713f12;
  display: none;
}

.form-alert:not([hidden]) {
  display: block;
}

.body--auth .view-root {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 173px;
  align-items: start;
}

.body--auth .view-root::before {
  content: "";
  display: block;
  background: url("../assets/Rectangle\ 10.svg") center/cover no-repeat;
  border-radius: 12px;
  min-height: 720px;
  height: calc(1080px - var(--header-h) - var(--footer-h) - 80px);
}

.body--auth .auth-card {
  margin: 40px 0;
  justify-self: start;
}

@media (max-width: 1400px) {
  .body--auth .view-root {
    grid-template-columns: 1fr;
  }
  .body--auth .view-root::before {
    height: 360px;
    min-height: 360px;
    margin-bottom: 24px;
    border-radius: 12px;
  }
  .body--auth .auth-card {
    margin: 0 auto 40px;
    justify-self: center;
  }
}
