html, body {
    height: 100%;
}

body {
    overflow: hidden;
}

.containers {
    height: 100%;
}

.loginBg {
    position: fixed;
    left: 0;
    top: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-end;
}

.loginBg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h3 {
    position: relative;
    z-index: 5;
    width: 65%;
    text-align: center;
    line-height:6vh;
    color: #50c4f6;
    letter-spacing: 0.3vw;
    font-size: 1.6vw;
    margin: 8.5vh auto 0;
    display: flex;
}

h3 b {
    color: #ffffff;
}

h3 .logo {
    width: 6vh;
    margin-right: 1vh;
    line-height: 7vh;
    height: 6vh;
    border-radius: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3 .logo img {
    width: 80%;
    display: inline-block;

}

.fixed {
    position: fixed;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 68vw;
    z-index: 10;
}

.leftDec {
    width: 50%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0 0 6px;
    overflow: hidden;
}

.leftDec img {
    display: block;
    height: 88%;
    object-fit: contain;
    width: 88%;
}

.loginNow {
    line-height: 6vh;
    text-align: center;
    font-size: 3.5vh;
    color: #0695f2;
    font-weight: bold;
    /*margin-bottom: 3vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3vh;
}
.loginNow .logo{
    width: 5vh;
    margin-right: 2.5vh;
}
.loginNow .logo img{
    width: 100%;
    display: block;
}
.loginBox {
    padding: 4vh 5vh;
    border-radius: 0vw;
    min-width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 45%;
}

.loginBox:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    display: none;
}

.loginBox:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7vh;
    width: 80%;
    height: 0.5vh;
    content: '';
    display: none;
}

@keyframes bling {
    0% {
        width: 80%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 80%;
    }
}
.loginBox form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.form-group {
    position: relative;
}

.form-group .fa {
    position: absolute;
    width: 6vh;
    height: 6vh;
    text-align: center;
    line-height: 6vh;
    font-size:2.8vh;
    color: #0695f2;
    border-radius: 0.3vw 0 0 0.3vw;
    z-index: 10;
}
.form-group .fa.fa-envelope{
    font-size: 2.6vh;
}

input.form-control::-webkit-input-placeholder { /* WebKit browsers*/
    color: #ccc;
}
input.form-control:-moz-input-placeholder { /* Mozilla Firefox 4 to 18*/
    color: #ccc;
}
input.form-control::-moz-input-placeholder { /* Mozilla Firefox 19+*/
    color: #ccc;
}
input.form-control:-ms-input-placeholder { /* Internet Explorer 10+*/
    color: #ccc;
}

.form-control:focus {
    background-color: #ffffff;
    color: #333333e6;
}

.input-group.form-group input.form-control {
    width: calc(100% - 130px);
    margin-right: 0.5vw;
    margin-left: 0 !important;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
    border-radius: 0rem;
}

.btn-primary {
    color: #fff;
    background: -webkit-linear-gradient(180deg, #59bcff 0%, #0695f2 100%);
    border-color: #59bcff;
    border-radius: 0px;
    font-size: 1.15rem;
    font-weight: 400;
    box-shadow:0 5px 8px rgb(10 35 178 / 20%);
    margin-top: 3.5rem;
}

.btn-primary:hover {
    background-color: #0695f2;
    border-color: #0695f2;
}

.input-group-text {
    border-radius: 0rem !important;
}

.outBox {
    display: flex;
    flex: 1;
    width: 65%;
    height: 70%;
    position: fixed;
    left: 17.5%;
    top: 15%;
    background: #fff;
    border-radius: 6px;
    box-shadow:0 0 15px rgb(147 192 255 / 26%);
}

.textMessage {
    height: 100%;
    width: 100%;
    cursor: pointer;
    background: #409eff;
    color: #fff;
    border: 1px solid #47a2ff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textMessage .fa {
    animation: rot 2s linear infinite;
    position: static;
    height: fit-content;
    line-height: 1;
    width: fit-content;
    margin-left: 0.2rem;
    color: #9e9e9e;
}

@keyframes rot {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

.textMessage.disable {
    background: #efefef;
    color: #9e9e9e;
    border-color: #ccc0;
}

.form-control.disable {
    cursor: not-allowed;
}


@media only screen and (max-width: 800px) {
    h3 {
        font-size: 2.4vh;
        width: 92%;
    }

    .outBox {
        width: 92%;
        left: 4%;
        padding: 1vh;
    }

    .leftDec {
        display: none;
    }

    .loginBox form {
        padding-left: 0vh;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .loginBg img {
        width: auto;
        height: 100%;
        position: relative;
        left: -35%;
    }

    .loginBox {
        padding: 2vh;
        width: 100%;
        min-width: 200px;
    }

    .fixed {
        right: 50%;
        transform: translate(50%, -50%);
        width: 30vw;
    }

    .form-control {
        padding: 0.5rem 1rem 0.5rem 2.5rem;
    }
}