/* ============================================================
   PING AUTH MODAL — FINAL UI
   ============================================================ */

#ping-auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#ping-auth-modal {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 34px;
  width: 360px;
  max-width: calc(100% - 40px);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* Close button */
#ping-auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  color: #444;
}

/* Icon */
.ping-auth-icon {
  display: block;
  margin: 0 auto 18px;
  width: 72px;
  height: auto;
}

/* Title */
.ping-auth-title {
  font-size: 22px; /* 10px smaller than previous */
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

/* Google button */
.ping-auth-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.ping-auth-google img {
  width: 20px;
  height: 20px;
}

.ping-auth-google:hover {
  background: #f7f8f8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
