.auth-submit:disabled,
.mypage-logout:disabled {
  cursor: progress;
  opacity: 0.68;
}

.auth-helper {
  width: min(440px, 100%);
  margin: 12px auto 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

.mypage-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.mypage-profile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.mypage-profile div {
  border: 1px solid #dce6f5;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(16, 54, 125, 0.06);
}

.mypage-profile dt {
  margin-bottom: 6px;
  color: #60708a;
  font-size: 13px;
  font-weight: 800;
}

.mypage-profile dd {
  margin: 0;
  color: #071d51;
  font-size: 16px;
  font-weight: 900;
}

.mypage-logout {
  min-height: 42px;
  border: 1px solid #d7e1ef;
  border-radius: 10px;
  background: #fff;
  color: #10367d;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}

.mypage-logout:hover {
  border-color: #10367d;
}

@media (max-width: 820px) {
  .mypage-topbar,
  .mypage-profile {
    grid-template-columns: 1fr;
  }

  .mypage-logout {
    width: 100%;
  }
}
