.login-body{
    min-height: 100vh;
    background: url('../images/loginbg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}

.login-body .form-group button {
    max-width: 100%;
    width: 100%;
}

.login-body .form-group input{
    margin: 0 auto 0px;
    border-radius: 7px;
    line-height: 1.7rem;
     background-color: transparent;
    border: 1px white solid ;
    color: white;
}


.login-body .form-control{
    font-family: 'NexaBold';

}
.login-body .form-group{
    position: relative;
    width: 100%;
    margin-bottom: .5rem;
}


.login-body .form-control:-webkit-autofill,
.login-body .form-control:-webkit-autofill:hover, 
.login-body .form-control:-webkit-autofill:focus, 
.login-body .form-control:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #1f1f22 inset !important;
    box-shadow: 0 0 0 30px #1f1f22 inset !important;
    background-color: transparent !important;
    -webkit-text-fill-color: #FFF !important;
}


.invalid-feedback,
.back-validation-content,
.back-validation,
.error-msg{
    display: block;
    font-size: 12px;
    line-height: 1;
    margin: auto;
    margin-bottom: .2rem;
    width: 100%;
    text-align: left;
    margin-top: .25rem;
    color: #dc3545;
    max-width: 100%;
}
.login-form{
    max-width: 400px;
    margin: auto;
    padding: 1rem;
}



/* thank you */



.thank_you{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url(../media/images/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}

.thank_you .thank-con{
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;   
    justify-content: center;
    align-content: center;

}

.thank_you .thank-con img{
    margin: auto;
}

.rotatable {
    margin-top: -32vh;
}

@media (max-width:1600px) {
    .login-form >img{
        max-height: 33vh;
        margin: auto;
        min-height: 210px;
    }
    .rotatable {
        margin-top: -30vh;
    }
    .login-form {
        max-width: 350px;
    }
}

@media only screen and (max-width: 768px) {
    .bodylogo img{
        max-width: 80%;
    }
    .bodylogo{
        display: flex;
        justify-content: center;
    }
    .login-body .form-group button{
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .thankyouImg img{
        height: 4rem;
    }

}



@media (max-width: 992px) and (orientation: landscape) {
    .rotatable{
        display: flex;
        
    }
    .bodylogo{
        display: flex;
        justify-content: center;
        width: 40%;
    }
    .bodylogo img{
        max-width: 100%;
    }
    .rotatable form{
        margin-top: 15%;
        width: 60%;
    }

    

}

.thankyouImg img{
    height: 6rem;
    width: 100%;
}


.login-body .form-group input::placeholder {
    color: white;
}



/* start style of the spin  */



.loading-overlay {
    background: rgba(0, 0, 0,  .97);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.rotatable > img {
    display: block;
    margin: auto;
    margin-bottom: 15px;
    max-width: 100%;
    width: 100%;
}
.reverse-spinner {
    position: relative;
    height: 150px;
    width: 150px;
    border: 6px solid transparent;
    border-top-color: #EABB71;
    border-left-color: #EABB71;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;

}



.overlay-hidden {
    display: none !important;
}



.reverse-spinner::before {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: 6px solid transparent;
    border-top-color: #fff;
    border-left-color: #fff;
    border-radius: 50%;
    -webkit-animation: spinBack 1s linear infinite;
    animation: spinBack 1s linear infinite;

}

.row.d-flex.justify-content-center {
    align-items: center;
}

img, svg {
    max-width: 100%;
}


@-webkit-keyframes spin {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

}



@keyframes spin {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

}



@-webkit-keyframes spinBack {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg)
}

}



@keyframes spinBack {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg)
}

}
