.shine-auth-wrap{
    display:flex;
    min-height:100vh;
    background:#0f1012;
}

.shine-auth-left{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px;
    background:#111317;
}

.shine-auth-right{
    width:50%;
    background-size:cover;
    background-position:center;
    position:relative;
}

.shine-auth-right::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.2),
            rgba(0,0,0,.55)
        );
}

.shine-auth-box{
    width:100%;
    max-width:460px;
}

.shine-auth-box h1{
    margin:0 0 12px;
    font-size:48px;
    line-height:1;
    color:#fff;
}

.shine-auth-sub{
    margin:0 0 40px;
    color:#9da3aa;
    font-size:17px;
}

/* =========================================================
   LOGIN FORM
   ========================================================= */

.login-username,
.login-password,
.login-remember{
    margin-bottom:22px;
}

.shine-auth-box label{
    display:block;
    margin-bottom:10px;
    color:#d7d7d7;
}

.shine-auth-box input[type="text"],
.shine-auth-box input[type="password"],
.shine-auth-box input[type="email"]{
    width:100%;
    height:54px;
    border-radius:14px;
    border:1px solid #2b3138;
    background:#1a1d22;
    color:#fff;
    padding:0 16px;
    font-size:15px;
}

.shine-auth-box input:focus{
    outline:none;
    border-color:#7aa2ff;
}

.shine-auth-box input[type="submit"],
.um input[type="submit"].um-button{
    width:100%;
    height:54px;
    border:none;
    border-radius:999px;
    background:#7aa2ff !important;
    color:#fff !important;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.shine-auth-box input[type="submit"]:hover,
.um input[type="submit"].um-button:hover{
    opacity:.92;
}

.shine-auth-links{
    margin-top:24px;
    text-align:center;
}

.shine-auth-links a{
    color:#9da3aa;
}

/* =========================================================
   UM FORM
   ========================================================= */

.um{
    max-width:100% !important;
}

.um-form input,
.um-form textarea,
.um-form select{
    background:#1a1d22 !important;
    border:1px solid #2b3138 !important;
    color:#fff !important;
    border-radius:14px !important;
}

.um-field-label label{
    color:#d7d7d7 !important;
}

.um a.um-link{
    color:#7aa2ff !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:900px){

    .shine-auth-wrap{
        flex-direction:column;
    }

    .shine-auth-left{
        width:100%;
        min-height:100vh;
    }

    .shine-auth-right{
        display:none;
    }

}