.btn {
  padding: 0.973rem 0 !important;
  font-size: 1.5rem;
}

.btn-primary {
  background-color: #f70044 !important;
  box-shadow: 0 0 5px #f70044, 0 0 15px #f70044, 0 0 20px #f70044,
    0 0 30px #f70044;
  border: 1px solid #f70044;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #f70067 !important;
  box-shadow: 0 0 5px #f70067, 0 0 15px #f70067, 0 0 20px #f70067,
    0 0 30px #f70067;
  border: 1px solid #f70067;
  color: black;
}

.country-list {
  color: black !important;
}

.iti__selected-dial-code {
    color: #ffffff;
}

.iti {
        width: 100%;
        color: #fff;
}

#popup1 {
    display: none;  /* 默认隐藏 - 这个必须保留 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* 新增的包裹层用于居中 */
.popup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* 弹窗内容框 */
.popup-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 300px;
    padding: 20px;
    position: relative;
    backdrop-filter: blur(3px);
    background-color: rgba(108, 108, 108, 0.2);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* 弹窗内容区域 */
.popup-content {
    margin-bottom: 20px;
    color: #fff;
}

.popup-content h3,
.popup-content p {
    color: #fff;
}

.popup-content h3 {
    margin-bottom: 20px;
}

/* 弹窗底部按钮区域 */
.popup-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
}

/* 按钮通用样式 */
#confirm-button, #cancel-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

/* 确认按钮样式 */
#confirm-button {
    color: #fff !important;
    border: 1px solid var(--accent-color);
}


/* 取消按钮样式 */
#cancel-button {
    color: #fff !important;
    border: 1px solid var(--accent-color);
}

/* 关闭图标样式 */
.close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    font-size: 18px;
    color: #999;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
}

.close-popup:hover {
    background-color: #f5f5f5;
    color: #666;
}

/* 触发按钮样式 */
.trigger-btn {
    padding: 10px 20px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px;
}

.trigger-btn:hover {
    background-color: #40a9ff;
}