/* 弹窗覆盖层样式 */
.email-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
}

/* 弹窗主体样式 */
.email-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 600px;
    max-width: 90%;
    z-index: 999;
    border-radius: 20px;
    overflow-y: auto;
}

/* 标题样式 */
.email-title {
    text-align: center;
    margin-bottom: 7px;
    margin-top: 18px;
}

.email-title h3 {
    font-size: 22px;
    color: #222;
    margin: 0;
}

/* 提示文本样式 */
.email-description {
    text-align: center;
    margin-bottom: 34px;
    color: #989898;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* 输入区域样式 */
.email-input-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
}

.email-input-border {
    overflow: hidden;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
}

.email-input {
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
}

.email-send-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 12px;
    background-color: transparent;
    color: #5E89FF;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* 状态消息样式 */
.verification-status {
    text-align: left;
    margin-bottom: 15px;
    color: #EF4D43;
    font-size: 15px;
    position: relative;
    padding-left: 21px;
    z-index: 1;
}

/* 按钮区域样式 */
.email-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    margin-bottom: 10px;
    gap: 15px;
}

/* 按钮公共样式 */
.email-btn {
    padding: 13px 40px;
    border-radius: 50px;
    cursor: pointer;
    background-color: white;
    border: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 17px;
    color: #333;
    transition: all 0.5s ease;
}

.close-popup-btn {
    color: #222;
    border: 1px solid #E5E5E5;
}

.complete-binding-btn {
    color: #fff;
    cursor: not-allowed;
    border-color: #C3D7FE;
    background-color: #C3D7FE;
}

/* 按钮交互状态 */
.email-btn:hover {
    letter-spacing: 3px;
}

/* .complete-binding-btn:hover:not(:disabled) {
    background-color: rgb(0, 181, 120);
    box-shadow: rgb(0, 181, 120) 0px 7px 29px 0px;
    color: white;
} */

.email-btn:active {
    transform: translateY(10px);
    transition: 100ms;
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px;
}

.email-btn:not(:active) {
    transform: translateY(0);
    transition: all 0.5s ease;
}

/* 启用的完成绑定按钮 */
.complete-binding-btn.enabled {
    background-color: #075CF9;
    color: white;
    cursor: pointer;
}

.email-popup-header__img {
    text-align: center;
}

.email-popup-icon {
    position: absolute;
    left: 20px;
    top: 0;
    z-index: 1;

}