.logo-link {
  text-decoration: none;
}

/* ===== CONTAINER ===== */
.gp-container {
  max-width: 540px;
  padding-bottom: 30px;
}

/* ===== BREADCRUMB ===== */
.gp-breadcrumb {
  font-size: 12.5px;
  color: #888;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-link {
  color: #009688;
  text-decoration: none;
}

.bc-link:hover {
  text-decoration: underline;
}

.bc-sep {
  color: #bbb;
}

.bc-current {
  color: #555;
}

/* ===== PAGE HEADER ===== */
.gp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.gp-icon-wrap {
  width: 46px;
  height: 46px;
  background: #009688;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.gp-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.gp-subtitle {
  font-size: 12.5px;
  color: #888;
  margin-top: 2px;
}

/* ===== CARD ===== */
.gp-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== FORM GROUPS ===== */
.gp-form-group {
  padding: 6px 0 10px;
}

.gp-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 6px 0 12px;
}

.gp-label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #444;
  margin-bottom: 8px;
}

.gp-label-icon {
  color: #009688;
  margin-right: 4px;
}

/* ===== INPUT ===== */
.gp-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.gp-input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 7px;
  padding: 11px 42px 11px 14px;
  font-size: 13.5px;
  color: #444;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa;
}

.gp-input:focus {
  border-color: #009688;
  box-shadow: 0 0 0 3px rgba(0,150,136,0.1);
  background: #fff;
}

.gp-input::placeholder {
  color: #bbb;
}

.gp-eye {
  position: absolute;
  right: 13px;
  cursor: pointer;
  color: #aaa;
  font-size: 15px;
  user-select: none;
}

.gp-eye:hover {
  color: #009688;
}

/* ===== PHONE ===== */
.gp-phone-wrap {
  border: 1px solid #ccc;
  border-radius: 7px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gp-phone-wrap:focus-within {
  border-color: #009688;
  box-shadow: 0 0 0 3px rgba(0,150,136,0.1);
  background: #fff;
}

.gp-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 12px;
  background: #f0f4f4;
  border-right: 1px solid #ddd;
  font-size: 13px;
  color: #555;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}

.gp-input-phone {
  border: none;
  border-radius: 0;
  padding-left: 12px;
  background: transparent;
  box-shadow: none !important;
}

.gp-input-phone:focus {
  border: none;
  box-shadow: none;
}

/* ===== HINT ===== */
.gp-hint {
  font-size: 11.5px;
  color: #999;
  margin-top: 6px;
}

/* ===== PASSWORD STRENGTH ===== */
.gp-strength-bar {
  height: 5px;
  background: #eee;
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.gp-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: width 0.3s, background 0.3s;
}

.gp-strength-label {
  font-size: 11.5px;
  margin-top: 4px;
  font-weight: bold;
  min-height: 16px;
}

/* ===== RULES LIST ===== */
.gp-rules {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gp-rules li {
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.gp-rules li.pass {
  color: #43a047;
}

.gp-rules li.pass .rule-dot {
  color: #43a047;
}

.rule-dot {
  font-size: 7px;
  color: #ccc;
}

/* ===== MATCH MESSAGE ===== */
.gp-match-msg {
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
  font-weight: bold;
}

.gp-match-msg.match {
  color: #43a047;
}

.gp-match-msg.no-match {
  color: #e53935;
}

/* ===== BUTTONS ===== */
.gp-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.gp-btn-submit {
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 11px 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.gp-btn-submit:hover {
  background: #00796b;
}

.gp-btn-cancel {
  background: #fff;
  color: #888;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}

.gp-btn-cancel:hover {
  background: #f5f5f5;
  color: #555;
}

/* ===== SUCCESS OVERLAY ===== */
.gp-success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.gp-success-overlay.show {
  display: flex;
}

.gp-success-box {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.gp-success-icon {
  font-size: 48px;
  color: #43a047;
  margin-bottom: 14px;
}

.gp-success-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
}

.gp-success-msg {
  font-size: 13px;
  color: #777;
  margin-bottom: 22px;
  line-height: 1.6;
}

.gp-success-btn {
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.gp-success-btn:hover {
  background: #00796b;
}
