body {
    background-color: white;
}

.authentication-image {
    border-radius: 44px;
    object-fit: cover;
    /* padding-right: 20px; */
    /* width: 676px; */
    width: 550px;
    /* width: 100%; */
    /* height: 1100px; */
    /* position: fixed; */
    /* top: 0; */
    /* right: 55%; */
    /* height: 100%; */
    height: calc(100vh - 40px);
    /* padding: 20px; */
    background-color: #001514;
    /* margin: 20px; */
    background-image: url('../Assets/Images/Frame.svg');
}

.columnLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.imageContainer {
    width: 550px;
    background-image: url('../Assets/Images/Frame.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 40px);
    background-color: #001514;
    border-radius: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    padding: 44px;
}

.logoImage {
    z-index: 1;
    /* position: fixed; */
}


.logoImage h2 {
    color: #89BE6F;
    font-family: "EYExtraBold";
    font-size: 54px;
    line-height: 64.8px;
    text-align: start;
    margin-bottom: 0px;
}

.logoImage h1 {
    color: white;
    font-family: "EYExtraBold";
    font-size: 24px;
    line-height: 28.8px;
    text-align: start;
}

.logoImage p {
    color: white;
    font-family: "EYRegular";
    font-size: 16px;
    line-height: 19.2px;
    text-align: start;
    margin-bottom: 44px;
}

#LoginDiv {
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%; */
    padding: 0px 44px;
}

.headText {
    color: black;
    font-family: "EYExtraBold";
    font-size: 44px;
    line-height: 52.8px;
    text-align: center;
    text-transform: uppercase;
}

.headP {
    color: black;
    font-family: "EYExtraLight";
    font-size: 18px;
    line-height: 21.6px;
    text-align: center;
    margin-bottom: 44px;
}


.login-form label {
    color: black;
    font-family: "EYExtraLight";
    font-size: 16px;
    line-height: 19.2px;
}

.login-form input {
    /* color: #9CA5B8; */
    color: black;
    background-color: #F5F7FA;
    font-family: "EYRegular";
    font-size: 18px;
    line-height: 21.6px;
    /* margin-bottom: 10px; */
    padding: 14px;
    border: 1px solid #E1E6ED;
    border-radius: 0px;
    width: 100%;
}

.login-form input:focus {
    box-shadow: none;
    border: 1px solid #E1E6ED;
    /* color: #9CA5B8; */
    color: black;
}

.login-form input::placeholder {
    color: #9CA5B8;
}

.login-form button,
.login-form button:hover,
.login-form button:focus {
    padding: 14px 44px;
    border-radius: 0px;
    background-color: #226200;
    font-family: "EYRegular";
    font-size: 16px;
    line-height: 19.2px;
    margin-bottom: 0px;
    color: white;
    width: 100%;
    margin-top: 50px;
}

.password-box {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}


@media (max-width: 480px) {
    .imageContainer {
        height: auto;
        margin-top: 24px;
        padding: 30px;
    }

    #big-image {
        /* margin-bottom: 24px; */
        width: 70%;
    }

    #LoginDiv {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 0px 24px;
    }

    .columnLogo {
        height: auto;
    }

    .logoImage p:last-child {
        margin-bottom: 0px;
    }

    .logoImage h2 {
        font-size: 40px;
    }

    .logoImage h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .logoImage p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .headP{
        font-size: 16px;
        margin-bottom: 26px;
    }

    .login-form input{
        font-size: 16px;
    }

    .logoImage{
        display: none;
    }

    .login-form button, .login-form button:hover, .login-form button:focus{
        margin-top: 24px;
    }
}