/* lOGIN LEFT BLOCK BG */

.login-cover {
    background-image: url(../../img/login-layout/cover.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


/* LOGIN BLOCK BG GRADIENT */

.login-hero {
    color: #fff;
    display: flex;
    height: 100vh;
    background: rgb(7, 8, 40);
    background: linear-gradient(0deg, rgba(7, 8, 40, 1) 0%, rgba(255, 255, 255, 0) 100%);
}


/* LOGIN FORM STYLE */

.login-form-block {
    -webkit-box-shadow: 3px 0px 21px 8px rgba(0, 0, 0, 0.035);
    -moz-box-shadow: 3px 0px 21px 8px rgba(0, 0, 0, 0.035);
    box-shadow: 3px 0px 21px 8px rgba(0, 0, 0, 0.035);
    z-index: 1000;
}

.login-form-block::before {
    content: '';
    height: 100vh;
    position: absolute;
    width: 1px;
    margin-left: -13px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(9, 9, 121, 0.2) 50%, rgba(255, 255, 255, 1) 100%);
}

.login-form-container {
    height: calc(100vh - 60px);
    width: 100%;
}

.login-form-container .form-floating input {
    width: 320px;
    background-color: #eef3f7;
    border-color: #eef3f7;
    transition: color .2s ease, background-color .2s ease;
    -webkit-transition: color .2s ease, background-color .2s ease;
    -moz-transition: color .2s ease, background-color .2s ease;
    -ms-transition: color .2s ease, background-color .2s ease;
    -o-transition: color .2s ease, background-color .2s ease;
}


/* LOGIN FORM BUTTON STYLE */

.login-form-container form#auth button {
    background: #fc6e31;
    color: #fff;
    border: 0;
    transition: color .2s ease, background-color .3s ease;
    -webkit-transition: color .2s ease, background-color .3s ease;
    -moz-transition: color .2s ease, background-color .3s ease;
    -ms-transition: color .2s ease, background-color .3s ease;
    -o-transition: color .2s ease, background-color .3s ease;
}

.login-form-container form#auth button:hover {
    background: #ee682f;
    transition: color .2s ease, background-color .3s ease;
    -webkit-transition: color .2s ease, background-color .3s ease;
    -moz-transition: color .2s ease, background-color .3s ease;
    -ms-transition: color .2s ease, background-color .3s ease;
    -o-transition: color .2s ease, background-color .3s ease;
}


/* FOOTER */

.footer {
    background-color: rgb(255, 255, 255);
    height: 60px;
    width: 100%;
}