* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Eurostile LT Std Extended 2 */
@font-face {
    font-family: 'Eurostile';
    src: url('font/Eurostile-LT-Std-Extended-2.ttf') format('truetype');
}

/* Myriad Pro Regular */
@font-face {
    font-family: 'Myriad';
    src: url('font/MyriadPro-Regular.otf') format('opentype');
}

/* Roboto Regular */
@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Regular.ttf') format('truetype');
}

body {
    font-family: 'Roboto', sans-serif !important;
    height: 100%;
}

p {
    font-size: 1.0rem;
    line-height: 1.6rem;
}

.body-bg {
    background: url(img/bg.jpg) no-repeat bottom center;
    background-blend-mode: normal;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y: -18vw;
}
a {
text-decoration-line: none !important;
color: #fff;
}

.full-height {
    height: 100vh;
}
.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("img/loader.gif") center no-repeat;
}
/* Turn off scrollbar when body element has the loading class */
body.loading{
    overflow: hidden;   
}
/* Make spinner image visible when body element has the loading class */
body.loading .overlay{
    display: block;
}
.red-btn {
    background-color: #d41c33;
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 30px;
    z-index: 10;
    text-decoration-line: none !important;
}

.red-btn:hover {
    background-color: #ad1125;
    color: #fff;
}

.logo {
    max-width: 170px;
}

.form-wrapper {
    max-width: 600px;
    z-index: -1;
}

.form-control {
    border: 1px solid #a4a4a4;
}

.form-control:focus {
    border-color: #d41c33;
    box-shadow: none !important;
}

.form-label {
    margin-bottom: 0px;
}

#verifyButton {
    display: none;
}

#otp {
    display: none;
}

#submitOTP {
    display: none;
    width: 100%;
}

#verifiedMsg {
    display: none;
    color: rgb(0, 128, 0);
}

#notverifiedMsg {
    display: none;
    color: rgb(128, 0, 0);
}

.v-gradient {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%), #ffffff 0%;
}

.thanks {
    font-family: EuroStile;
    font-size: 3.0rem;
    line-height: 2.6rem;
    color: #d41c33;
}

.thanksdesc {
    font-family: EuroStile;
    font-size: 1.6rem;
    line-height: 1.6rem;
}

.formsubmit {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
/*    .full-height {
        height: 100%;
    }*/

    .body-bg {
        background-position-y: 160px;
    }

    .body-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120vh;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 100%);
        z-index: -10;
        /* Adjust the z-index as needed to ensure the overlay is on top */
    }

    .form-control {
        padding: .25rem .75rem;
    }

    .logo {
        max-width: 100px;
    }

    .form-wrapper {
        padding: 0px 5px;
    }

    .thanks {
        font-family: EuroStile;
        font-size: 2.0rem;
        line-height: 2.6rem;
    }

    .thanksdesc {
        font-family: EuroStile;
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}