.bizmation_otp_container_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999999;
}

.bizmation_otp_container {
    max-width: 400px;
    width: 100%;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2#bizmation_otp_heading {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}

.bizmation_form-group {
    margin-bottom: 20px;
}

label#bizmation_otp_label {
    display: block;
    margin-bottom: 5px;
}

#bizmation_otp {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button#bizmation_otp_verify {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button#bizmation_otp_verify:hover {
    background-color: #0056b3;
}

.bizmation_resend_otp_btn {
    margin-top: 5px;
    display: inline-block;
    text-decoration: underline;
}

.bizmation_resend_otp_btn:hover {
    cursor: pointer;
}

.bizmation_otp_close {
    float: right;
    margin-top: 5px;
    text-decoration: underline;
}

.bizmation_otp_close:hover {
    cursor: pointer;
}

.bizmation_otp_notice {
    margin: 0;
    padding: 0;
}

.otp_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 40px;
    background: rgb(0, 0, 0, .8);
    height: 100vh;
    z-index: 9999999999999;
    color: #fff;
    padding-top: 45vh;
}

.otp_loader img {
    width: 40px;
    -webkit-animation: switch-loader 2s infinite linear;
    animation: switch-loader 2s infinite linear;
}

@-webkit-keyframes switch-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes switch-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}