
@font-face {
    font-family: 'RobotoFlex-Regular', sans-serif;
    src: url("../font/RobotoFlex-Regular.ttf");
}

@font-face {
    font-family: 'times-roman';
    src: url("../font/times-roman.ttf");
}

body, html {
    font-family: 'RobotoFlex-Regular', sans-serif;
    margin: 0;
    padding: 0;
}

.otp_block h3 {
    font-size: 19px;
    color: grey;
    font-family: sans-serif;
    font-weight: normal;
    text-align: center;
    margin-bottom: 25px;
}

.otp {
    min-height: 100vh;
    background: #e3e3e3;
}

.otp_logo {
    margin: auto;
    display: block;
    width: max-content;
    padding: 40px 0 0;
}

.otp_block input[type="submit"] {
    padding: 10px 30px;
    font-size: 21px;
    border: 0px;
    border-radius: 7px;
    margin-top: 20px;
    background: #e3e3e3;
    cursor: pointer;
    transition: 0.5s;
}

.otp_block {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 64vh;
    background: #fff;
    width: 80%;
    margin: 40px auto 0;
    border-radius: 8px;
    padding: 40px 30px;
    justify-content: center;
}

.otp-input-fields input {
    padding: 5px;
    font-size: 20px;
    width: 50px;
    height: 40px;
    margin: 6px;
    border: 1px solid #000;
    text-align: center;
    border-radius: 6px;
}

    .otp-input-fields input::-webkit-outer-spin-button,
    .otp-input-fields input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .otp-input-fields input[type=number] {
        -moz-appearance: textfield;
    }

.otp_block input[type="submit"]:hover {
    background: #00843e;
    color: #fff;
}

.footer {
    width: 80%;
    margin: 25px auto 0;
    display: flex;
    justify-content: space-between;
}

    .footer p {
        margin: 0;
        padding: 0;
        font-family: sans-serif;
        font-size: 14px;
        line-height: 28px;
    }

    .footer .F-contact p a {
        color: black;
        text-decoration: none;
    }

    .footer .F-App {
        display: flex;
    }

        .footer .F-App > img {
            height: 100px;
            margin-right: 20px;
        }

.F-socialmedia ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
}

    .F-socialmedia ul li {
        list-style: none;
        margin: 5px 13px;
        font-size: 24px;
        color: grey;
    }

        .F-socialmedia ul li img {
            width: 35px;
        }

.download-apps ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-left: 0;
}

    .download-apps ul li a {
        align-items: center;
        display: flex;
        text-decoration: none;
        color: #000;
        justify-content: center;
        margin-right: 20px;
    }

        .download-apps ul li a img {
            width: 20px;
            height: auto;
            margin-right: 5px;
        }

@media(max-width: 1400px) {
    .footer {
        width: 87%;
    }
}

@media(max-width: 1200px) {
    .footer {
        width: 92%;
    }

        .footer > div {
            width: 100%;
        }
}

@media(max-width: 991px) {
    .footer {
        flex-wrap: wrap;
        width: 92%;
        justify-content: center;
        align-items: center;
    }

        .footer > div {
            width: auto;
            margin: 20px;
        }
}

@media (max-width: 767px) {

    .otp-input-fields input {
        padding: 5px;
        font-size: 18px;
        font-size: 18px;
        width: 36px;
        height: 34px;
        margin: 6px;
        border: 1px solid #000;
        text-align: center;
        border-radius: 6px;
    }

    .otp_logo {
        padding: 20px 0 0;
    }
}

@media (max-width: 540px) {
    .otp-input-fields input {
        font-size: 18px;
        width: 36px;
        margin: 3px;
        height: 34px;
    }

    .otp_block {
        width: 90%;
    }

    .footer > div {
        width: auto;
        margin: 20px 0;
    }

    .footer .F-App {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


