.loginWrap
{
    background:var(--black);
    height:100vh;
    display:flex;justify-content:center;
    align-items:center;
}

.loginWrap > div
{
    max-width:380px;
    width:90%;
}

.loginWrap
{
    background:var(--black);
    height:100vh;
    display:flex;justify-content:center;
    align-items:center;
}

.loginWrap .logo 
{
    width:100%;
    max-width:120px;
    margin:auto;
}

.loginForm input
{
    font-size:15px;
    height:60px;
    line-height:60px;     
    border-color:var(--white);
    background:transparent;
    color:var(--white);
    font-weight:500;
}

.passwordToggle
{
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    background: #ffffff20;
    opacity:0.5;
    color:var(--white);
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 18px;
    bottom: 15px;
    transition: all 0.2s ease-out;
}

.passwordToggle:hover {opacity:.8;}


.loginForm label
{
    color:var(--lightgrey);
    font-weight:400;    
}
 

.loginSplash
{
    background-size:cover;
    height:100vh;
    color:var(--white);
}

.loginSplash:after
{
    background:#000000aa;
    content:'';
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}

.loginSplashInner
{
    z-index:9;
    position:absolute;
    bottom:5%;
    right:5%;
}

.loginSplashInner h1
{
    font-weight:700;
    font-size:40px;
}

.form-error
{
    background:none;
    color:var(--lightred);
}