body{
    margin:0;
    font-family: 'Montserrat', sans-serif;
}
.loginWrapper{
    background-image:url('https://kangaroodev.co.uk/Clients/eazi/assets/eazibg.jpg');
    background-size: cover;
    display:flex;
    width:100%;
    height:100vh;
    background-color:#fff;
    position:relative;
    justify-content:center;
    align-items:center;
}
.innerLoginWrapper{
    display:flex;
    width:100%;
    max-width:1000px;
    position:relative;
    border-radius:10px;
    overflow:hidden;
    justify-content: center;
}
.innerLoginCol{
    display:block;
    width:50%;
    height:500px;
    position:relative;
}
.incorrectPass {
    color: #495057;
    background-color: #fff;
    border-color: rgb(238, 136, 136);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(251, 0, 0, 0.25);
}
.innerLoginWithBg{
    display: none;
    background-image:url('../../images/Eazi-Sites-Login.png');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}
.loginImgOverlay{
    display:none;
}
.innerLoginWithForm{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    box-sizing:border-box;
    flex-direction:column;
    background-color:white;
    border-radius:20px;
}

.innerLoginWithForm h1 {
    font-size: 30px;
    font-weight: bold;
}
.loginForm{
    width:100%;
    display:block;
    position:relative;
}
.formLogo{
    display:block;
    max-width:150px;
    height:auto;
    position:relative;
}
.formLogo img{
    display:block;
    width:80px;
    margin-bottom: 20px;
    margin-top: -30px;
}
.loginBtn{
    background-color:#212121;
    width:150px;
    height:45px;
    color:white;
    border-radius:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:25px;
    font-size:18px;
    cursor:pointer;
    transition:all .25s ease;
    margin: auto;
    margin-top: 40px;
}
.loginBtn:hover{
    background-color:#000;
}

.loginBtn2{
    background-color:#999;
    width:150px;
    height:45px;
    color:white;
    border-radius:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:25px;
    font-size:18px;
    cursor:pointer;
    transition:all .25s ease;
    margin: auto;
    margin-top: 40px;
}
.loginBtn2:hover{
    background-color:#777;
}

/* Loader */
.siteLoader {
    position:fixed;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    background-image: url(../../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 50px;
    z-index:9999
}