/* Variables */

:root {

    --txt-size: 14px;

    --bg-color: #FFFFFF;

    --error-ms: #ff3535;

    --sec-color: #32A1DB;

    --main-color: #032546;

    --input-color: #FFFFFF;

    --scroll-color: #868686b0;

    --scroll-top-color: #555555;

}



/* Global */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html, body, main {

    width: 100%;

    font-weight: 400;

    min-height: 100vh;

    position: relative;

    font-size: var(--txt-size);

    background-color: var(--bg-color);

    font-family: 'Roboto', sans-serif;

}



img {

    max-width: 100%;

}



a, a:hover, a:focus {

    color: inherit;

    text-decoration: none;

}



button, input, select, textarea,

.form-control:focus, .form-select:focus {

    outline: unset;

    box-shadow: unset;

    background-color: var(--input-color);

}



button:focus, input:focus,

select:focus, textarea:focus {

    outline: unset;

    box-shadow: unset;

}



select {

    -webkit-appearance: none;

    -moz-appearance: none;

    background: transparent;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");

    background-repeat: no-repeat;

    background-position-x: 97%;

    background-position-y: 5px;

}



/* Error Message */

span.error {

    display: none;

    font-size: 14px;

    text-align: left;

    padding-top: 5px;

    padding-left: 15px;

    color: var(--error-ms);

}



/* Captcha */

.g-recaptcha {

    margin: auto;

    width: max-content;

}



/* Scroll */

::-webkit-scrollbar-track {

    background-color: transparent;

}



::-webkit-scrollbar {

    width: 4px;

    background-color: transparent;

}



::-webkit-scrollbar-thumb {

    background-color: var(--scroll-color);

    border: 0 solid var(--scroll-top-color);

}



/* Loader */

.page-loading {

    display: none;

}



.page-loading .lds-hourglass {

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    display: flex;

    position: absolute;

    align-items: center;

    justify-content: center;

    background-color: #000000ad;

}



.page-loading .lds-hourglass:after {

    width: 0;

    height: 0;

    margin: 8px;

    content: " ";

    display: block;

    border-radius: 50%;

    box-sizing: border-box;

    border: 32px solid #cef;

    animation: lds-hourglass 1.2s infinite;

    border-color: #cef transparent #cef transparent;

}



@keyframes lds-hourglass {

    0% {

        transform: rotate(0);

        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);

    }

    50% {

        transform: rotate(900deg);

        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);

    }

    100% {

        transform: rotate(1800deg);

    }

}



/* Main Application */

main {

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-image: url('../images/background.png');

}



/* Authentication */

.auth .header {

    padding: 25px;

}



.auth .header img {

    width: 292px;

}



.auth .auth-con {

    margin: 0;

    min-height: 100vh;

    color: var(--bg-color);

}



.auth .auth-con .auth-forms {

    padding: 0;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}



.auth .auth-con .auth-forms .forms-con {

    padding-left: 25px;

    text-align: center;

    padding-right: 25px;

}



.auth .auth-con .auth-forms .forms-con img {
    margin-bottom: 15px;
}



.auth .auth-con .auth-forms .forms-con input,

.auth .auth-con .auth-forms .forms-con select {

    padding: 7px 20px;

    border-width: 2px;

    border-radius: 50px;

    color: var(--bg-color);

    background-color: transparent;

}



.auth .auth-con .auth-forms .forms-con select option {

    color: #333;

}



.auth .auth-con .auth-forms .forms-con .btn {

    font-size: 16px;

    padding: 7px 20px;

    border-width: 2px;

    font-weight: bold;

    border-radius: 50px;

    color: var(--bg-color);

    text-transform: uppercase;

    background-color: var(--sec-color);

    border: 2px solid var(--sec-color);

}



.auth .auth-con .auth-forms .forms-con .btn:hover {

    color: var(--sec-color);

    background-color: transparent;

}



.auth .auth-con .auth-forms .forms-con .calendar {

    margin-top: 35px;

}



.auth .auth-con .auth-forms .forms-con .calendar a {

    font-size: 16px;

    font-weight: bold;

    padding: 7px 25px;

    border-radius: 50px;

    display: inline-block;

    color: var(--main-color);

    background-color: var(--bg-color);

    border: 1px solid var(--bg-color);

    transition: color .15s ease-in-out,

        background-color .15s ease-in-out,

        border-color .15s ease-in-out,

        box-shadow .15s ease-in-out;

}



.auth .auth-con .auth-forms .forms-con .calendar a:hover {

    color: var(--bg-color);

    background-color: transparent;

    box-shadow: 10px 10px var(--main-color);

}



.auth .auth-con .auth-forms .forms-con .countdown {

    justify-content: center;

    align-items: center;

}



.auth .auth-con .auth-forms .forms-con .countdown .count {position: relative;display: flex;justify-content: center;align-items: center;}



.auth .auth-con .auth-forms .forms-con .countdown .count h1 {position: absolute;left: 0;right: 0;margin: 0;font-size: 3.5em;top: calc(56% - 15px);transform: translateY(-50%);}



.auth .auth-con .auth-forms .forms-con .countdown .count p {

    position: absolute;

    left: 0;

    right: 0;

    margin: 0;

    bottom: -15px;

    font-size: 18px;

}



.auth .auth-con .auth-forms .footer {

    padding: 25px;

}



.auth .auth-con .auth-forms .footer img {

    width: 272px;

    margin-bottom: 7px;

}



.auth .auth-con .auth-forms .footer .info {

    margin: 0;

    font-size: 10px;

    list-style: none;

    line-height: 12px;

    padding-left: 75px;

}



.auth .auth-con .main-image {

    padding: 0;

    display: flex;

    text-align: right;

    align-items: center;

    justify-content: flex-end;

}



.auth .auth-con .main-image img {

    max-height: 95vh;

}

.form-control::placeholder {
  color: #fff !important;
  opacity: 1 !important; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #fff !important;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
 color: #fff !important;
}


.auth .auth-con .main-image p {

    right: -30px;

    bottom: 80px;

    font-size: 12px;

    position: absolute;

    color: var(--bg-color);

    transform: rotate(90deg);

}
.title {
     max-width: 550px;
    width: 75%;
    margin: 0 auto;
}



/* Responsive */

/* Extra large devices (large desktops, 1500px and up) */

@media only screen and (min-width: 1500px) {

    /* Global Container */

    .container, .container-lg, .container-md,

    .container-sm, .container-xl, .container-xxl {

        max-width: 1520px;

    }

}



/* Extra large devices (desktops, 1400px and down) */

@media only screen and (max-width: 1400px) {

    

}



/* Extra large devices (laptops/desktops, 1200px and down) */

@media only screen and (max-width: 1200px) {
    .auth .auth-con .auth-forms .forms-con .countdown .count h1 {
        font-size: 2.3vw;
    }
}



/* Large devices (laptops/desktops, 992px and down) */

@media only screen and (max-width: 992px) {
    .g-recaptcha {
        transform: scale(.8) translateX(-20px);
    }
    .auth .auth-con .main-image p {
        right: -15px;
        bottom: 50px;
        font-size: 8px;
    }
}

@media (max-width: 800px) and (orientation: landscape) {
    .countdown .col-6 {
        width: 25% ! important;
    }
}


/* Medium devices (landscape tablets, 768px and down) */

@media only screen and (max-width: 768px) {

    /* Auth */

    .auth .header img {

        width: 220px;

    }

    .auth .auth-con .main-image img {

        max-width: 50vw;

    }




    /* Countdown */

    .auth .auth-con .auth-forms .forms-con .countdown .count {

        position: relative;

        margin-bottom: 25px;

    }
     .auth .auth-con .auth-forms .forms-con .countdown .count h1 {
        font-size: 3.5vw;
    }

    /* .auth .auth-con .auth-forms .forms-con .countdown .count h1 {

        font-size: 16vw;

    } */

}



/* Small devices (portrait tablets and large phones, 600px and down) */

@media only screen and (max-width: 600px) {

   .auth .auth-con .auth-forms .forms-con .countdown .count h1 {
        font-size: 4vw !important;
    }

}

@media (max-width: 600px) and (orientation: portrait){
 .auth .auth-con .auth-forms .forms-con .countdown .count h1 {
        font-size: 3em !important;
    }
}






/* Extra small devices (phones, 450px and down) */

@media only screen and (max-width: 450px) {

    

}