:root {
    --primary: #3861c9;
    --secondary: #141515;
    --text: #000;
    --navbar-menu:#b3b3b3;
    --navbar-menu-hover:#9B8B12;
    --footer:#000;
    --border-color:#737373;
    --shadow-color: #c6c6c6;
    --owner-link:#003CB1;
}

.otp-page-container{
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    background-color: rgba(0,0,0,0.5);
}

.otp-form{
    border-radius:5px;
    background-color: #fff;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 12px #c6c6c6;
    color: var(--text);
    /* border:2px solid var(--text); */
}

@media screen and (max-width:500px) {
    .otp-form{
        width: 80% !important;
    }
}

@media screen and (max-width:400px) {
    .otp-form{
        width: 90% !important;
    }
}

.input-otp-form{
    border: 2px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    /* padding: 10px; */
    width: 100%;
}

.body-placeholder{
    height: 100vh;
}