.modalEmailVerify label { display: block; margin-bottom: 10px; }
.modalEmailVerify input { width: 100%; padding: 8px; margin-top: 4px; box-sizing: border-box; }

.modalEmailVerify button:disabled { background: #ccc; cursor: not-allowed; }
.modalEmailVerify {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; z-index: 1000;
}
.modal-contentEmailVerify {
    background: #fff; padding: 20px; width: 360px;
    display: flex; flex-direction: column; gap: 12px; position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.modal-contentEmailVerify h3 {
    margin: 0; font-size: 20px; text-align: center;
}
.message-boxEmailVerify {
    min-height: 20px; text-align: center; font-size: 14px; padding: 5px 10px;
}
.message-boxEmailVerify.errorEmailVerify { background: #ffe6e6; color: #b30000; }
.message-boxEmailVerify.successEmailVerify { background: #e6ffe6; color: #006600; }
.attemptsEmailVerify { font-size: 13px; text-align: center; color: #666; }
.progress-containerEmailVerify {
    width: 100%; height: 6px; background: #eee; border-radius: 3px; overflow: hidden;
}
.progress-barEmailVerify {
    height: 6px; background: #212856; width: 0;
    transition: width 1s linear;
}
.actionsEmailVerify .btn {
    margin-top: 10px;
}