:root {
    --green: #4F8D00;
}

body {
    background: #F5F5F5;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
}

.main-header {
    display: none;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr;
    height: 100vh;
}

@media (min-width: 830px) {
    .auth-container {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    border: none;
    box-shadow: 0 0 7px rgba(0, 0, 0, .06);
}

.auth-container--left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container__logo {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto 2rem auto;
}

@media (min-width: 830px) {
    .auth-container__logo {
        max-width: 227px;
    }
}

.auth-container__form {
    max-width: 480px;
    width: 100%;
}

.auth-container__form h1 {
    font-size: 24px;
    color: var(--green);
}

.auth-container--right {
    display: none;
}

@media (min-width: 830px) {
    .auth-container--right {
        background-image: url('../../producer/assets/images/login/wk-graan-login-background.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.loginContainer {
    background: #FFFFFF 0 0 no-repeat padding-box;
    box-shadow: 0 8px 14px #00000080;
    border: 1px solid #DFDFDF;
    border-radius: 6px;
    opacity: 1;
    max-width: fit-content;
    max-height: fit-content;
    height: 100%;
}

.loginLogoContainer {
    width: 240px;
    height: 304px;
    background: url('../../producer/assets/images/login/wkg-logo-login-desktop.png') 0 0 no-repeat padding-box;
}

.loginLogoColumn {
    border-right: 1px solid lightgrey;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .loginLogoColumn {
        border-right: none;
    }

    .loginLogoContainer {
        width: 481px;
        height: 180px;
        background: url('../../producer/assets/images/login/wkg-logo-login-mobile@2x.png') 0 0 no-repeat padding-box;
    }

    .loginLogoColumn {
        border-right: none;
        border-bottom: 1px solid lightgrey;
        opacity: 1;
    }
}

@media only screen and (max-width: 576px) {
    .loginLogoContainer {
        width: 240px;
        height: 100px;
        background: url('../../producer/assets/images/login/wkg-logo-login-mobile.png') 0 0 no-repeat padding-box;
    }
}

.loginFormHeader {
    width: 100%;
    height: 53px;
    /* UI Properties */
    text-align: left;
    font-weight: 600;
    letter-spacing: 0;
    color: #4F8D00;
    opacity: 1;
}

.loginLabel {
    width: 100%;
    height: 20px;
    /* UI Properties */
    text-align: left;
    font-weight: 600;
    letter-spacing: 0;
    color: #000000;
    opacity: 1;
}

.loginInput {
    margin-top: 7px;
    height: 38px;
    opacity: 1;
}

.loginInput:focus {
    box-shadow: 0 0 10px #4F8D00;
    outline: 2px;
    background: #FFFFFF 0 0 no-repeat padding-box;
    border: 1px solid #4F8D00;
    border-radius: 3px 3px 4px 3px;
}

.submitBtn {
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0;
    width: fit-content;
    height: 38px;
    /* UI Properties */
    background: #4F8D00 0 0 no-repeat padding-box;
    border-radius: 4px;
}