
.button_alert {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* CSS for section section:VerificationModal */
.section-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none; /* Allow clicks through if modal is hidden, but here it's visible */
  display: flex;
  justify-content: center;
  align-items: center;
  
    /* 默认隐藏状态 display: none;*/
  display: none;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.modal-box {
  width: 347px;
  background-color: #1d1d27;
  border: 0.5px solid #69668b;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.modal-header {
  height: 52px;
  background: radial-gradient(59.89% 39.68% at 50% 0%, #3d3e48 0%, #282835 100%);
  border-bottom: 1px solid #69668b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-title {
  color: #ffffff;
  font-size: 14px;
}

/* Body */
.modal-body {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.code-display {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-text {
  color: #ffffff;
  font-size: 24px; /* Estimated from visual hierarchy */
  font-weight: bold;
}

.input-container {
  width: 100%;
}

.input-wrapper {
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #918dbe;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.input-placeholder {
  color: #69668b;
  font-size: 12px;
}

.icon-close {
  width: 24px;
  height: 24px;
}

.warning-container {
  width: 100%;
}

.warning-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-info {
  width: 14px;
  height: 14px;
}

.warning-text {
  color: #9c88b2;
  font-size: 14px;
}

.warning-yellow {
  color: #F5D88E;
  font-size: 14px;
}

.warning-word {
  color: #fff;
  font-size: 16px;
}

/* Footer */
.modal-footer {
  height: 60px;
  display: flex;
  border-top: 1px solid #69668b;
  background: radial-gradient(59.89% 39.68% at 50% 0%, #3d3e48 0%, #282835 100%);
}

.footer-btn-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #69668b;
}

.footer-btn-container:last-child {
  border-right: none;
}

.modal-btn {
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  height: 100%;
}