.logInBackGround {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/Icons/Ireland/PandaAdmin_Background_1920x1024 1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.logInBody {
    width: 100%;
    height: 100%;
    display:grid;
    grid-template-columns: 445px 1fr;
    position:relative;
    background-color:transparent;
}
.logInBodyLeft {
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 12px 0 0 12px;
    background-color: #054F44;
}
.logInLogoRight {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 55px;
    display:none;
}
@media (max-width: 1200px) {
    .logInBodyLeft {
   display:none;
        }
    .logInBody{
        display:block;
    }
    .logInLogoRight{
        display:block;
    }
    }

    .logInBodyRight {
        height: 100%;
        top: 0;
        right: 0;
        border-radius: 0 12px 12px 0;
        background-color: #F5F5F5;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .logInBodyLeftBackGround {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 12px 0 0 12px;
        // background-image: url('/Icons/LogIn/logInBodyLeftBackGround.webp');
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.4;
    }

    .logInBodyLeftLogo {
        width: 100%;
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logInBodyLogo {
        height: 55px;
    }

    .logInBodyLeftTextPanel {
        width: 100%;
        height: 70%;
        /*    display: flex;
    justify-content: center;
    align-items: center;*/
        color: #959595;
        font-weight: bold;
        text-align: center;
        padding: 10%;
    }

    .logInBodyRightHeader {
        width: 100%;
        height: 33%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10%;
    }

    .logInBodyRightHeaderTextPanel {
        width: 100%;
        text-align: left;
    }

    .logInBodyRightHeaderTextPanelHead {
        color: #2B2B2B;
    }

    .logInBodyRightHeaderTextPanelText {
        color: #727272;
    }

    .logInBodyRightBody {
        width: 100%;
        height: 67%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10%;
        font-family: 'Roboto-Regular';
        font-size: 18px;
    }

    .logInBodyRightBodyContainer {
        width: 100%;
        text-align: left;
    }

    .logInBodyRightBodyContainerInputBox {
        width: 100%;
        text-align: left;
        padding: 8px;
        border-radius: 6px;
        border: 1px solid #A5A5A5;
    }

    .logInBodyRightBodyContainerInputBoxLabel {
        width: 100%;
        text-align: left;
        font-family: 'ITCProBold';
        font-size: 18px;
    }

    .logInBodyRightBodyContainerError {
        width: 100%;
        text-align: left;
        color: red;
    }

    .logInBodyRightBodyContainerButtonLogin {
        width: 100%;
        text-align: center;
        color: white;
        background-color: black;
        padding: 6px;
        cursor: pointer;
        margin: 0 3px 3px 0;
        border-radius: 5px;
        font-weight: bold;
    }

        .logInBodyRightBodyContainerButtonLogin:hover:active {
            box-shadow: 1px 1px 7px rgba(147, 147, 147, 0.8);
            cursor: pointer;
        }

        .logInBodyRightBodyContainerButtonLogin:hover {
            box-shadow: 2px 2px 2px rgba(147, 147, 147, 0.8);
            background-color: #4880E1;
        }

    .logInBodyRightBodyContainerLinkContainer {
        width: 100%;
        text-align: center;
    }