/* The Modal (background) */
.nmb_otp-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.nmb_otp-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nmb_otp-modal-content p{
    color: #342a2a;
}
.nmb_otp-modal-content a {
    color: #342a2a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}
/** Digits form **/
.nmb_otp-modal-content .userInput{
    display:flex;
    justify-content: center;
}
.nmb_otp-modal-content .userInput input {
    width: 3rem !important;
    text-align: center;
    border: 1px solid #888 !important;
    /*font-size: 40px !important;*/
    color: black !important;
    background: #888 !important;
    margin: 0.5rem !important;
}
