html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 整頁淺灰背景，與截圖一致 */
.verify-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  position: relative;
}

/* 中央內容區塊 */
.verify-content {
  text-align: center;
  padding: 0 24px;
}

/* 大標題：黑色粗體 */
.verify-title {
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
}

/* 副標題：灰色，domain 粗體 */
.verify-subtitle {
  margin: 0 0 32px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.verify-subtitle strong {
  color: #111;
  font-weight: 600;
}

/* Spinner：細圈，藍色弧線 */
.spinner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #d8d8d8;
  border-top-color: #5aabf5;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer：固定在底部，置中 */
.verify-footer {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.verify-footer strong {
  color: #888;
  font-weight: 600;
}

