/* DMINOR_ACCOUNT_LOGIN_V1_20260714 */
.login-assist-row {
  margin-top: -2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(219, 215, 231, 0.62);
  font-size: 13px;
}

.remember-login {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  user-select: none;
}

.remember-login input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.remember-box {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 193, 223, 0.34);
  border-radius: 6px;
  color: #171522;
  background: rgba(10, 12, 22, 0.58);
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.remember-box svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 150ms ease, transform 150ms ease;
}

.remember-login input:checked + .remember-box {
  border-color: rgba(225, 217, 246, 0.88);
  background: linear-gradient(145deg, #ded8ef, #9992bd);
  box-shadow: 0 0 18px rgba(176, 145, 219, 0.20);
}

.remember-login input:checked + .remember-box svg {
  opacity: 1;
  transform: scale(1);
}

.remember-login input:focus-visible + .remember-box {
  outline: 2px solid rgba(193, 168, 228, 0.36);
  outline-offset: 3px;
}

.forgot-password-link,
.recovery-back-link {
  flex: 0 0 auto;
  color: rgba(205, 194, 229, 0.74);
  text-decoration: none;
  transition: color 150ms ease;
}

.forgot-password-link:hover,
.forgot-password-link:focus-visible,
.recovery-back-link:hover,
.recovery-back-link:focus-visible {
  color: #f1ebff;
  outline: none;
}

.recovery-card {
  width: min(520px, calc(100vw - 32px));
}

.recovery-form {
  display: grid;
  gap: 19px;
}

.recovery-copy {
  margin: -8px 0 4px;
  color: rgba(222, 217, 232, 0.52);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.recovery-actions {
  display: grid;
  gap: 13px;
}

.recovery-secondary {
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 188, 221, 0.19);
  border-radius: 14px;
  color: rgba(231, 226, 240, 0.72);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.025);
}

.recovery-success {
  min-height: 21px;
  margin: 0;
  color: #b9dfc6;
  font-size: 13px;
  text-align: center;
}

.recovery-hint {
  margin: 0;
  color: rgba(222, 217, 232, 0.42);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.login-rate-notice { margin-top: 12px; padding: 11px 13px; border: 1px solid rgba(181, 149, 255, .30); border-radius: 13px; color: rgba(241, 235, 255, .9); background: linear-gradient(145deg, rgba(117, 78, 173, .18), rgba(24, 18, 38, .70)); box-shadow: inset 0 1px rgba(255,255,255,.04); font-size: 13px; line-height: 1.55; text-align: center; }

@media (max-width: 520px) {
  .login-assist-row { font-size: 12px; }
}
