.logInBackGround {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/Icons/BackGround.webp');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Mulish';
}
.logInBody {
    width: 80%;
    height: 80%;
    border-radius: 20px;
    position:relative;
    background-color:white;
}
.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;
}
.logInBodyLeft {
    width: 33%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px 0 0 12px;
    background-color: dimgrey;

    
}
.logInBodyLeftLogo {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logInBodyLogo{
    width:50%;
}
.logInBodyLeftTextPanel {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'MulishExtraBold';
    font-weight:bold;
    text-align: center;
    padding: 10%;
}
.logInBodyRight {
    width: 67%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border-radius:0 12px 12px 0; 
}
.logInBodyRightHeader {
    width: 100%;
    height: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10%;
}
.logInBodyRightHeaderTextPanel {
    width: 100%;
    text-align: left;
    font-family: 'Mulish';
}
.logInBodyRightHeaderTextPanelHead {
    color: #2B2B2B;
    font-family: 'MulishExtraBold';
}
.logInBodyRightHeaderTextPanelText {
    color: #727272;
}
    .logInBodyRightBody {
        width: 100%;
        height: 67%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10%;
    }
.logInBodyRightBodyContainer {
    width: 100%;
    text-align: left;
    font-family: 'Mulish';
}
.logInBodyRightBodyContainerInputBox {
    width: 100%;
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #A5A5A5;
}
.logInBodyRightBodyContainerInputBoxLabel {
    width: 100%;
    text-align:left;
}
.logInBodyRightBodyContainerError {
    width: 100%;
    text-align: left;
    color:red;
}
.logInBodyRightBodyContainerButtonLogin {
    width: 100%;
    text-align: center;
    color: white;
    background-color: black;
    padding: 6px;
    font-family: 'Mulish';
    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;
}

@font-face {
    font-family: Mulish;
    src: url('../Mulish/Mulish-Regular.ttf');
}
@font-face {
    font-family: MulishExtraBold;
    src: url('../Mulish/Mulish-ExtraBold.ttf');
}