.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.login-shell {
  position: relative;
  z-index: 1;

  width: 100%;
  padding: 28px;
}

.login-card {
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 38px;

  border:
    1px solid
    rgba(255, 255, 255, 0.82);

  border-radius: 30px;

  background:
    rgba(255, 250, 248, 0.82);

  box-shadow:
    0 35px 90px
      rgba(93, 59, 52, 0.15),
    inset 0 1px 0
      rgba(255, 255, 255, 0.92);

  backdrop-filter:
    blur(24px)
    saturate(120%);

  -webkit-backdrop-filter:
    blur(24px)
    saturate(120%);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.login-brand-symbol {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  border-radius: 17px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #6a463f,
      #4f332e
    );

  box-shadow:
    0 14px 28px
      rgba(106, 70, 63, 0.24);

  font-size: 16px;
  font-weight: 850;
  letter-spacing: 1px;
}

.login-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-brand strong {
  color: #342522;
  font-size: 16px;
}

.login-brand small {
  color: #9b837d;

  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.5px;
}

.login-heading {
  margin-top: 42px;
}

.login-heading > span {
  color: #a2666f;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.login-heading h1 {
  margin: 10px 0 10px;

  color: #342522;

  font-size: 34px;
  letter-spacing: -1.2px;
}

.login-heading p {
  margin-bottom: 0;

  color: #947d77;
  font-size: 13px;
}

.login-error {
  margin-top: 22px;
  padding: 12px 14px;

  border:
    1px solid
    rgba(207, 120, 134, 0.22);

  border-radius: 12px;

  color: #9a5360;

  background:
    rgba(223, 141, 152, 0.12);

  font-size: 13px;
  font-weight: 650;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 28px;
}

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

.login-form label > span {
  color: #765e58;

  font-size: 12px;
  font-weight: 750;
}

.login-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;

  border:
    1px solid
    rgba(106, 70, 63, 0.13);

  border-radius: 14px;
  outline: none;

  color: #342522;

  background:
    rgba(255, 255, 255, 0.78);

  font-size: 16px;

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.login-form input:focus {
  border-color:
    rgba(223, 141, 152, 0.72);

  background: #ffffff;

  box-shadow:
    0 0 0 4px
      rgba(223, 141, 152, 0.12);
}

.login-form button {
  height: 52px;
  margin-top: 4px;

  border-radius: 14px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #6a463f,
      #7d524a
    );

  box-shadow:
    0 15px 30px
      rgba(106, 70, 63, 0.23);

  font-size: 14px;
  font-weight: 800;
  cursor: pointer;

  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.login-form button:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 19px 36px
      rgba(106, 70, 63, 0.28);
}

.login-note {
  margin: 26px 0 0;

  color: #aa9590;

  font-size: 10px;
  text-align: center;
}

@media (max-width: 560px) {
  .login-shell {
    padding: 18px;
  }

  .login-card {
    padding: 28px 22px;
    border-radius: 24px;
  }
}

/* PM_LOGIN_ICP_FOOTER_V1_START */
.pm-login-icp-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 10;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(93, 70, 60, 0.58);
  pointer-events: none;
}
.pm-login-icp-footer a {
  color: rgba(93, 70, 60, 0.62);
  text-decoration: none;
  pointer-events: auto;
}
.pm-login-icp-footer a:hover {
  color: rgba(93, 70, 60, 0.9);
  text-decoration: underline;
}
@media (max-height: 680px) {
  .pm-login-icp-footer {
    position: static;
    margin: 18px auto 10px;
  }
}
/* PM_LOGIN_ICP_FOOTER_V1_END */
