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

/* ===== INFO BOX ===== */
.gp-info-box {
  background: #009688;
  color: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.gp-info-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.gp-info-title {
  font-size: 13.5px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.4;
}

.gp-info-desc {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== FORM CARD ===== */
.gp-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 18px 16px 14px;
}

/* ===== INPUT ===== */
.gp-input-wrap {
  position: relative;
  margin-bottom: 10px;
}

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

.gp-input:focus {
  border-color: #009688;
}

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

.gp-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
  font-size: 15px;
  user-select: none;
}

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

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

.gp-btn-masuk {
  background: #f47920;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.gp-btn-masuk:hover {
  background: #e06b10;
}

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

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

/* ===== COMBO HINT ===== */
.gp-combo-hint {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gp-combo-hint i {
  color: #009688;
}

/* ===== 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;
}
