body{
    background-color: #fff;
}
.mainContainer{
    display: flex;
}
.column1{
    width: 40%;
    height: 100vh;
    background: url(../images/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.column2{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mainTitle{
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--darkColor);
}
.subTitle{
    font-size: 14px;
    color: #9d9d9d;
}
.loginForm{
    margin-top: 2em;
}
.formContainer .txtInput{
    display: block;
    margin: 1em 0;
    padding: 1em 0 0.5em;
    font-family: 'Poppins', sans-serif;
    border: 0;
    border-bottom: solid 1px #e4e4e4;
    min-width: 350px;
    outline: none;
}
.rememberAndForgot{
    display: flex;
    justify-content: space-between;
    padding: 1em 0;
}
.forgot{
    font-size: 14px;
}
.loginBtn{
    display: block;
    padding: 0.5em 3em;
    background: var(--primaryColor);
    color: var(--lightColor);
    border: none;
    border-radius: 3px;
    margin: 2em auto;
    cursor: pointer;
}
.loginBtn:hover{
    background-color: var(--secondryColor);
}
/* Mobile screen sizes */
@media screen and (max-width: 768px){
    .mainContainer{
        flex-direction: column;
    }
    .column1{
        width: 100%;
        max-height: 100px;
    }
    .column2{
        width: 100%;
        margin-top: 4em;
    }
}