#cvl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #0000004d;
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
}

#cvl-verification-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.11), 0 5px 15px 0 rgba(0, 0, 0, 0.08) !important;
    z-index: 1001;
    width: 300px;
    text-align: center;
}

#cvl-verification-code {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

#cvl-verify-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #5788b3;
    color: #fff;
    cursor: pointer;
}

#cvl-verify-btn:hover {
    background-color: #5788b3cc;
}