* {
    transition: .5s;
}
a {
    text-decoration: none;
}
a:hover {
    color: #4b830a;
}
.login {
    min-height: 100vh;
}
html {
    overflow-y: hidden;
}
body {
    overflow-y: hidden;
}
main {
    overflow-y: hidden;
    background-image: url('https://users.ooweb.org/images/_bg.jpg');
    background-position: center;
    background-size: cover;
}
body.login-page {}
a.logo-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.logo-login img {
    max-height: 160px;
}

.form-content-cst {
    width: 90%;
}
.form-content-cst-2 {
    width: 72%;
}
main .container-fluid.ps-md-0 {
    padding: 0;
}
main .desc-sign-up {
    color: #f1f1f1;
    font-size: 1.0rem;
    font-weight: 400;
}
main .desc-sign-up a {
    color: #1085ff;
}
main .desc-sign-up a:hover {
    color: #4b830a;
}
main .login-heading {
    font-weight: 500;
    color: #cbcbcb;
    font-size: 2.4rem;
}
main .form-control {
    border-radius: 1px;
}
main .form-check-label {
    color: #1085ff;
}

.green-text {
    color: #4b830a!important;
}
.green-text:hover {
    color: #1085ff!important;
}

div.API_respons_status {
    min-height: 24px;
    margin-bottom: 12px;
}
a.logo-login-page {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding-top: 2%;
    width: 100%;
}
a.logo-login-page img {
    max-width: 100px;
}
a.logo-login-page h1 {
    font-size: 2.4rem;
    line-height: 28px;
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
a.logo-login-page h1 span {
    color: #d5d5d5;
}
a.logo-login-page label {
    display: none;
    text-align: center;
    line-height: 19px;
    font-size: 18px;
    margin-top: 30px;
    font-weight: 400;
    width: 100%;
    color: #1085ff;
}
div.form-section-part {
    background: #020d1869;
}

.container-fluid.ps-md-0 a.logo-login-page {
    display: none!important;
}
div.form-section-part {
    background: #020d1869;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.form-section-part div.login {
    width: 40%;
    min-width: 300px;
}
div.form-section-part div.login div.container {            
    padding: 40px 15px;
    border-radius: 2px;
    /*background: #00216a30;
    border: 2px solid #00216a30;*/
}

@media screen and (max-width: 991px) {
    div.form-section-part div.login {
        width: 80%;
        min-width: 300px;
    }
}
@media screen and (max-width: 768px) {
    div.form-section-part div.login {
        width: 100%;
        min-width: 300px;
    }
    div.form-section-part div.login div.container {
        max-width: 95%;
        width: 100%;
    }
}



.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
}
.desc-sign-up.signature-form {
    font-size: 15px;
    line-height: 18px;
}
.fw-300 {
    font-weight: 300!important;
}
.error-msg {
    background: rgba(204, 204, 204, 76%); 
    padding: 12px 15px;
    border-radius: 2px;
    font-size: 14px;
    color: #b10000!important;
    font-weight: 400!important;
    width: 100%;
    text-align: left;
}
.success-msg {
    background: #d0ffde!important;
    padding: 12px 15px;
    border-radius: 2px;
    color: #008d38!important; 
    font-size: 15px;
    text-align: center;
    font-weight: 400;
}

/******** LOADING PAGE ********/
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#loading {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.729);
    position: absolute;
}

#loader {
    position: absolute;
    left: 50%;
    top: 40%;
    z-index: 1;
    width: 65px;
    height: 65px;
    margin: -20px 0 0 -20px;
    border: 12px solid #fff;
    border-radius: 50%;

    border-top: 12px solid rgb(0, 92, 196);
    border-bottom: 12px solid rgb(0, 92, 196);

    width: 85px;
    height: 85px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 80%), inset 0px 0px 5px rgb(0 0 0 / 80%);
    -webkit-animation: spin .9s linear infinite;
    animation: spin .9s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}