.login-page {
  background: #fff;
  color: #18181b;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login-page__header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e4e7;
  display: flex;
  min-height: 70px;
  padding: 16px 24px;
}

.login-brand {
  align-items: center;
  color: #18181b;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: -.45px;
  line-height: 28px;
}

.login-brand__mark {
  align-items: center;
  background: #18181b;
  border-radius: 8px;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.login-brand__mark span {
  background: #fff;
  border-radius: 4px;
  display: block;
  height: 12px;
  width: 12px;
}

.login-brand__logo {
  display: block;
  height: 28px;
  width: auto;
}

.login-page__content {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: calc(100vh - 153px);
  overflow: hidden;
  padding: 48px;
}

.login-card {
  background: #fff;
  border: 1px solid rgba(133, 142, 154, .5);
  border-radius: 12px;
  box-shadow: 0 18px 40px -14px rgba(17, 24, 39, .24), 0 1px 2px rgba(17, 24, 39, .06);
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}

.login-card__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 40px 24px;
}

.login-card__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.login-card__icon {
  align-items: center;
  background: #f4f4f5;
  border-radius: 12px;
  color: #52525b;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  margin-bottom: 4px;
  width: 48px;
}

.login-card__icon img {
  display: block;
  max-height: 36px;
  max-width: 36px;
  object-fit: contain;
}

.login-card__intro h1 {
  color: #18181b;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

.login-card__intro p {
  color: #71717a;
  font-size: 14px;
  line-height: 22.75px;
  margin: 0;
  max-width: 366px;
}

.login-card__requirement {
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.login-card__requirement strong {
  font-weight: 700;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.login-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-form__field label {
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  line-height: 14.4px;
  text-transform: uppercase;
}

.login-form__input {
  align-items: center;
  border: 1px solid #858e9a;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  min-height: 40px;
  padding: 8px 16px;
}

.login-form__input:focus-within {
  border-color: #18181b;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, .1);
}

.login-form__input svg {
  fill: none;
  flex: 0 0 17px;
  height: 14px;
  stroke: #64748b;
  stroke-width: 1.5;
  width: 17px;
}

.login-form__input input {
  border: 0;
  color: #18181b;
  font: 400 16px/24px var(--font-family);
  min-width: 0;
  outline: 0;
  padding: 0;
  width: 100%;
}

.login-form__input input::placeholder {
  color: #6b7280;
}

.login-form__field > p {
  color: #6b7280;
  font-size: 13px;
  line-height: 19.5px;
  margin: 0;
}

.login-form__submit {
  align-items: center;
  background: #18181b;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font: 700 14px/17px var(--font-family);
  gap: 8px;
  justify-content: center;
  min-height: 41px;
  padding: 12px 24px;
  letter-spacing: .7px;
}

.login-form__submit:hover {
  background: #27272a;
}

.login-form__submit:disabled {
  cursor: wait;
  opacity: .65;
}

.login-form__submit .arrow {
  font-size: 18px;
  line-height: 13px;
}

.registration-message {
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  text-align: center;
}

.registration-message.success {
  color: #2e7d32;
}

.registration-message.error {
  color: #c62828;
}

.login-card__privacy {
  color: #a1a1aa;
  font-size: 12px;
  line-height: 19.5px;
  margin: -4px 0 0;
  max-width: 366px;
  padding-top: 20px;
  text-align: center;
}

.login-page__footer {
  align-items: flex-start;
  border-top: 1px solid #e4e4e7;
  color: #a1a1aa;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  line-height: 16px;
  min-height: 83px;
  padding: 24px;
}

.login-page__footer div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.login-page__footer strong {
  color: #3f3f46;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.login-page__footer > span {
  color: #d4d4d8;
  padding-top: 9px;
}

.login-page__footer a {
  color: #d4d4d8;
  padding-top: 9px;
  text-decoration: none;
}

@media (max-width: 600px) {
  .login-page__content {
    padding: 32px 16px;
  }

  .login-card__body {
    padding: 24px 20px;
  }
}
