.login-form-sm {
    display: none;
}
.display-flex {
    display: flex;
}
.align-items-center {
   align-items: center;
}
.justify-content-end {
    justify-content: end;
}
.height-50 {
    height: 50px;
}
.error-message-sm {
    display: none;;
}
@media only screen and (max-width: 768px) {
	.login-top-container .login-form {
		display: none;
	}
    .login-form-sm {
        display: block;
    }
    .error-message-sm {
        display: block;
    }
}