
* {
    margin: 0;
    box-sizing: border-box;
    --web-font--smoothing: antialiased;
}

body {
    background: #edf2ed;
    font-family: 'muli',sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.modal_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    /* display: none;  */
}

.btn_purple {
    background: sky;
    padding: 10px 40px;
    cursor: pointer;
}

.modal_container {
    /* background: white; */
    background: #72cefc;
    width: 350px;
    max-width: 90%;
    padding: 15px;
    border-radius: 15px;
    position: relative;
}

    .modal_container button.close {
        position: absolute;
        right: 10px;
        top: 10px;
    }

.action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.active {
    opacity: 1;
    pointer-events: auto;
}

.modal_container otpForm {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-top: 10px;
}

from .input-field {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.input-field input {
    max-width: 15%;
    height: 40px;
    text-align: center;
}

    .input-field input::-webkit-inner-spin-button,
    .input-field input::-webkit-outer-spin-button {
        display: none;
    }

    .input-field input:focus {
        outline: #00b991;
        outline-offset: 2px;
    }

.otpForm button {
    margin-top: 10px;
    width: 92%;
    background: #ddd124;
    color: #525252;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.resend {
    text-align: center;
    padding-top: 7px;
    color: #f33d3d;
    align-items: center;
    padding-left: 120px;
}

.modal_container h4 {
    font-size: 20px;
    color: #121212;
    text-align: center;
    font-family: sans-serif;
    padding-bottom: 10px
}

.input-field input:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: initial;
}


.label-container {
    display: flex;
    gap: 15px;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.label {
    padding: 10px 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    /*cursor: pointer;*/
    border-radius: 5px;
    text-align: center;
}

    .label:hover {
        background-color: #ddd;
    }

.otpForm {
    padding-top: 3%;
}
 
