    body {
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        text-align: left;
    }
    *, ::after, ::before {
        box-sizing: border-box;
    }
    * {
        margin: 0;
        padding: 0;
    }

    .wrapper {
        height: 100vh;
    }

    .logo {
        position: absolute;
        top: 4rem;
        left: 3rem;
        z-index: 1;
    }

    .logo img {
        width: 12rem;
        height: 4rem;
    }

    .row {
        margin: 0;
        height: 100%;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .imageContainer {
        width: 50%;
        opacity: 0.4;
        background-image: url(https://www.zonerecruiter.com/Image?imagePath=FwMdCwarLd5hcsZhIH2jAzBtoHANVWzfCcE6ucabq1vYjsjIOmZAOQ%3D%3D);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .form-group {
        margin-bottom: 1rem;
    }
    .form-group label {
        display: inline-block;
        margin-bottom: .5rem;
    }
    .form-group .emailClass , .form-group .passwordClass  {
        display: block;
        width: 100%;
        height: calc(1.5em + .75rem + 2px);
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: .25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .signInContainer {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #4B527C;
    }

    .signInBtn {
        display: inline-block;
        font-weight: 400;
        color: #212529;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        margin: 0;
        font-family: inherit;
        overflow: visible;
        text-transform: none;
        -webkit-appearance: button;
    }

    .smLogo {
        height: 5rem;
    }

    .form {
        height: 50%;
        width: 60%;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        color: white;
        font-size: 20px;
    }

    .emailClass:focus , .passwordClass:focus {
        outline-offset: 0px !important;
        outline: none;
        border: 3px solid #95dfb7;
        box-shadow: unset !important;
    }

    hr {
        border-color: white;
        margin-top: 1rem;
        margin-bottom: 1rem;
        border: 0;
        border-top: 2px solid rgba(255, 255, 255, 0.81);
    }

    .form-links {
        text-align: center;
        font-size: 14px;
        border-bottom: 2px solid transparent;
    }

    .form-links a {
        text-decoration: none;
        color: white;
    }


    .form-links a {
        text-decoration: none;
        color: white;
        padding: 0.3rem;
        transition: color 0.5s;
    }

    .form-links a:hover {
        border-bottom: 2px solid white;
    }

    .signInBtn {
        background: #339E64;
        color: white;
        font-size: 20px;
		width:100%;
    }

    .signInBtn:hover {
        background: #17844a;
        color: white;
    }
    @media (min-width: 800px) and (max-width: 1200px) {
        .form {
            width: 80%;
        }
    }

    @media screen and (max-width: 800px) {
        .imageContainer {
            display: none;
        }

        .logo {
            display: none;
        }

        .wrapper {
            height: 100%;
        }

        .signInContainer {
            width: 100%;
            height: 100vh;
        }

        .form {
            width: 80%;
        }
    }