.mp-wrap {
  width: 100%;
  max-width: none;
}

.mp-head {
  margin-bottom: 20px;
}

.mp-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.mp-desc {
  margin: 0;
  color: #a1a1aa;
  font-size: 14px;
}

.mp-panel {
  padding: 20px;
  margin-bottom: 20px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.mp-panel:last-child {
  margin-bottom: 0;
}

.mp-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.mp-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 10px;
  color: #e4e4e7;
  font-size: 14px;
}

.mp-summary-item strong {
  color: #5ec8ff;
  font-size: 18px;
}

.mp-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.mp-info-list--cols3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mp-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.mp-info-row dt {
  margin: 0;
  color: #a1a1aa;
  font-size: 12px;
  font-weight: 600;
}

.mp-info-row dd {
  margin: 0;
  color: #f4f4f5;
  font-size: 13px;
  word-break: break-all;
}

@media (max-width: 480px) {
  .mp-summary {
    grid-template-columns: 1fr;
  }

  .mp-info-list--cols3 {
    grid-template-columns: 1fr;
  }

  .mp-info-list:not(.mp-info-list--cols3) {
    grid-template-columns: 1fr;
  }
}

.mp-pass-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mp-pass-grid .mp-panel {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mp-pass-grid {
    grid-template-columns: 1fr;
  }
}

.mp-section-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.mp-label {
  display: block;
  margin-bottom: 8px;
  color: #d4d4d8;
  font-size: 14px;
  font-weight: 600;
}

.mp-input {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.mp-input:focus {
  outline: none;
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.15);
}

.mp-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0099dd, #006699);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.mp-submit-outline {
  background: transparent;
  border: 1px solid rgba(0, 174, 239, 0.55);
  color: #5ec8ff;
}

.mp-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mp-alert {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.mp-alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.mp-alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

/* 하단 고정 메시지 영역 — 표시 시 레이아웃이 밀리지 않도록 높이 예약 */
.mp-messages {
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  box-sizing: border-box;
}

.mp-messages.is-empty {
  visibility: hidden;
  background: transparent;
  border: 1px solid transparent;
}
