@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,600;1,200;1,500;1,600;1,800&family=Belanosima:wght@400;600;700&family=Inter:wght@500;600;700;800&family=PT+Serif&family=Poppins:ital,wght@0,400;1,100;1,200;1,300;1,400;1,700&family=Roboto:ital,wght@0,400;1,500;1,700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: #08090d; */
}
@font-face {
    font-family: "Inter";
    src: url("path/to/inter-regular.woff2") format("woff2"),
        url("path/to/inter-regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Inter";
    background-color: #08090d;
    background-image: url(../img/svg/Dotted_BG_Web.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-body img {
    width: 100%;
    height: 100%;
}
.login-form {
    height: 100vh;
}
.input::placeholder {
    color: #08090d;
}
.heading-form {
    width: 525px;
}
.heading-form img {
    width: 300px;
    margin: auto;
}

form {
    width: 525px;
}
.row > form {
    padding: 0;
}
.input {
    display: block;
    background-color: #ffffff;
    border-radius: 10px;
    color: #08090d;
    width: 525px;
    height: 50px;
    font-family: "Courier New", Courier, monospace;
    border: 1px solid #08090d;
}

.otp-btn {
    width: 525px;
    display: block;
    /*padding-top: 10px;*/
    height: 45px;
    text-decoration: none;
    background-color: #08090d;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-weight: bold;
    font-family: "Courier New", Courier, monospace;
}
#number {
    margin-left: 0px;
}
#init_number {
    margin-right: 0px;
}
@media (max-width: 1024px) {
    .input,
    .otp-btn {
        width: 525px;
        margin: auto;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 75%;
    }
}
@media (max-width: 768px) {
    .input,
    .otp-btn {
        width: 525px;
        margin: auto;
    }
    .heading-form {
        width: 100%;
    }
    .row > form {
        padding: 10px;
    }
}
@media (max-width: 520px) {
    body {
        background-color: #08090d;
        background-image: url(../img/svg/Dotted_BG_Mobile.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .input,
    .otp-btn {
        width: 100%;
        margin: auto;
    }
    .col-lg-5 {
        width: 100%;
    }
}

.mobile-inp-div {
    display: flex;
    flex-direction: row;
}
