@font-face {
    font-family: 'Metropolis';
    src: url('Metropolis-Regular.otf') format('opentype');
}

:root {
    --htmlFontSize: 100%;
    --baseColor: #000;
    --bodyBackgroundColor: #000;
    --bodyColor: var(--baseColor);
    --bodyFontFamily: "Metropolis";
    --bodyFontFamilyFallback: sans-serif;
    --bodyFontSize: 0.875rem;
    --bodyFontWeight: 400;
    --bodyLineHeight: 1.5;
    --anchorColor: #eee;
    --formGap: 1.875rem;
    --loginBorderRadus: 0.25rem;
    --loginColor: #eee;

    --loginInputBackgroundColor: rgb(253, 253, 253, 0.6);
    --loginInputHoverBackgroundColor: rgb(253, 253, 253, 0.6);

    --loginLabelBackgroundColor: #363b41;

    --loginSubmitBackgroundColor: #ED1C24;
    --loginSubmitColor: #eee;
    --loginSubmitHoverBackgroundColor: #ED1C24;
}

* {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.align {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    place-items: center;
}

.grid {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 20rem;
    position: relative;
    /* top: 25%;
    transform: translateY(-50%); */
    top: 0;
    transform: translateY(55%);
}

.hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    font-size: var(--htmlFontSize);
}

body {
    background-image: url('../webimages/bg-desktop.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-color: #000;
    color: #fff;
    font-family: 'Metropolis', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    /* min-height: 100vh; */
    overflow: hidden;
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    body {
        background-image: url('../webimages/bg-mobile.svg');
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    body {
        background-image: url('../webimages/bg-mobile.svg');
    }
}

a {
    color: #eee;
    color: var(--anchorColor);
    outline: 0;
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: underline;
}

input {
    background-image: none;
    border: 0;
    color: inherit;
    font: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

input[type="button"] {
    cursor: pointer;
}

.form {
    display: grid;
    grid-gap: 0.875rem;
    gap: 0.875rem;
    grid-gap: var(--formGap);
    gap: var(--formGap);
}

.form input[type="password"],
.form input[type="text"],
.form input[type="button"] {
    width: 100%;
}

.form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.login {
    color: #eee;
    color: var(--loginColor);
}

.login label,
.login input[type="text"],
.login input[type="password"],
.login input[type="button"] {
    border-radius: 0.25rem;
    border-radius: var(--loginBorderRadus);
    padding: 1rem;
}

.login label {
    background-color: #363b41;
    background-color: var(--loginLabelBackgroundColor);
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.login input[type="password"],
.login input[type="text"] {
    background-color: #1f1e1e;
    border: none;
    border-radius: 10px;
    font-weight: 700;
}

.login input[type="password"]:focus,
.login input[type="password"]:hover,
.login input[type="text"]:focus,
.login input[type="text"]:hover {
    background-color: #1f1e1e;
}

.login input[type="button"] {
    background-color: #ED1C24;
    background-color: var(--loginSubmitBackgroundColor);
    color: #eee;
    color: var(--loginSubmitColor);
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    padding: 0.8rem;
}

.login input[type="button"]:focus,
.login input[type="button"]:hover {
    background-color: #ED1C24;
    background-color: var(--loginSubmitHoverBackgroundColor);
}

p {
    margin-top: 1.5rem;
    margin-bottom: 1;
    color: rgb(255 255 255 / 60%);
    font-size: 1rem;
}

.emailLabel {}

#txtPhone {
    text-align: center;
    font-size: 15px;
}

h1 {
    color: #fff;
    font-weight: bolder;
    font-size: 1.5rem;
}

.text--center {
    text-align: center;
}

.logo {
    position: absolute;
    top: 10%;
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
}

.progress-container {
    width: 100%;
    background-color: #f2f2f21e;
    border-radius: 5px;
    margin-top: 20%;
}

.progress-bar {
    width: 0%;
    height: 8px;
    background-color: #ed1c24;
    border-radius: 5px;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

#emailError {
    text-align: center;
    color: #ed1c24;
    display: none;
    margin-top: 5px;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.otp-field {
    display: flex;
}

.otp-field input {
    width: 24px;
    font-size: 32px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid rgb(253 253 253 / 10%);
    background-color: rgb(253 253 253 / 10%);
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
    padding: 0.4rem !important;
}

.otp-field input:focus {
    box-shadow: 0 0 1px 1px rgb(253 253 253 / 10%);
}

#recaptcha-container {
    margin-top: 10px;
    margin-bottom: 20px;
}

.recaptcha-container {
    transform: scale(0.9);
    transform-origin: 0 0;
    -webkit-transform: scale(0.9);
    -webkit-transform-origin: 0 0;
}

.disabled {
    opacity: 0.5;
}

.btnResend {
    font-family: 'Metropolis', sans-serif;
    color: #C71C22;
    text-decoration: none !important;
}

.instructions {
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 55%);
    margin-left: auto;
    margin-right: auto;
}

.instructions img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.btnStart {
    font-family: 'Metropolis', sans-serif;
    color: #fff;
    text-decoration: none !important;
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .instructions {
        justify-content: center;
        align-items: center;
        position: relative;
        left: 35%;
        transform: translate(-50%, 45%);
        margin-left: auto;
        margin-right: auto;
    }

    .instructions img {
        width: 72vw;
    }

    .btnStart {
        width: 50%;
    }
}

.otpLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
}

.otpLoader h1 {
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) { 
    .otpLoader {
        position: absolute;
        top: 5rem;
    }
}
.gallery {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.gallery .image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img1 {
    opacity: 1;
    z-index: 10;
}

.img2 {
    opacity: 0;
}

.img3 {
    opacity: 0;
}

.container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-rewards {
    width: 100%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 
    .gallery .image {
        background-size: contain;
    }
}