/*
	new style login
*/

.uni-login {
    width: 100vw;
    height: 100vh;
    margin-top: -15px;
    margin-left: -15px !important;
    font-family: 'Poppins', -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, Arial, sans-serif !important;
}

.uni-login-left {
    width: 100%;
    height: 100%;
    float: left;
}

.uni-login-left-image {
    height: 100%;
    margin-right: 500px;
    margin-left: 0px;
    background-color: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://accounts.uniworld.io/public/template-login-v2/img/UniBot-1.jpg);
    background-position: top right;
    position: relative;
}

.uni-login-left-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

.uni-login-right {
    position: relative;
    width: 500px;
    height: 100%;
    overflow: auto;
    background-color: #ffffff;
    margin-left: -500px;
    margin-right: 0px;
    float: left;
}

.uni-login-right-content {
    padding: 50px;
    max-width: 450px;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
}

.uni-login-right-header {
    font-weight: normal;
}

.uni-login-right-footer {
    position: absolute;
    left: 50px;
    bottom: 20px;
    font-size: 13px;
    opacity: .8;
}

.font-12 {
    font-size: 13px;
}

.uni-login-right .btn {
    background-color: #303435;
    border: 1px #000 solid;
    box-shadow: none !important;
}
.uni-login-right .btn-outline-secondary{
    background-color: #fff;
    border: 1px #000 solid;
}
.uni-login-right .btn:hover,
.uni-login-right .btn:focus,
.uni-login-right .btn:active {
    background-color: #212223 !important;
}
.uni-login-right .btn,
.uni-login-right .form-control{
    border-radius: 12px !important;
}
.uni-login-left-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.uni-login-left-logo img {
    width: 120px;
}

.uni-login-left-logo-image {
    padding-bottom: 30px;
    border-bottom: 1px rgba(255, 255, 255, .5) solid;
    margin-bottom: 40px;
}

.uni-login-left-logo-text {
    line-height: 1.3;
}

.uni-login-left-logo-text span {
    color: #fff;
    font-size: 24px;
    font-weight: 100;
}

.uni-login-left-logo-text h3 {
    text-align: center;
    color: #fff;
    font-weight: 500;
}

@media(max-width:1024px) {
    .uni-login-right-content {
        padding: 30px;
    }
    .uni-login-left-logo {
        width: calc(100% - 60px);
    }
    .uni-login-right {
        width: 400px;
        margin-left: -400px;
    }
    .uni-login-left-image {
        margin-right: 400px;
    }
    .uni-login-right-footer {
        left: 30px;
    }
}

@media(max-width:576px) {
    .uni-login-right-content {
        max-width: 95%;
    }
    .uni-login-left {
        display: none;
    }
    .uni-login-right {
        width: 100%;
        float: none;
        margin-left: 0;
    }
}