body, html{
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.left-side img{
    height: 75%;
    width: 100%;
    object-fit: fill; 
    background-size: cover;
}

.right-side{
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.login-form{
    display: flex;
    flex-direction: column;   
    margin-left: 9em;
}

.login-form h1{
    color: #23B24B;
}

.login-form img{
    margin-bottom: 20px;
    width: 300px;
    height: 100px;

}

.error {
    color: #e04562;
    font-size: 14px;
    padding: 7px;
    top: 100%;
    padding-left: 10px;
    background-color: #F9E4E8;
    border-radius: 3px;
    margin-top: -22px;
    margin-bottom: -25px;
    width: 95%;
}

.inputs{
    display: flex;
    flex-direction: column;
    gap: 30px;  
}

.inputs input {
    display: flex;
    align-items: center;
    margin: auto;
    width: 445px;
    height: 80px;
    background-color: white;
    font-size: 20px;
    padding-left: 25px;
    border: 2px solid #efefef;
    border-radius: 6px;
    box-shadow: 4px 5px #efefef;   
    margin-left: -5px;
}

::placeholder {
    color: #B2B1B1;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder {/* Edge 12 -18 */
    color: #B2B1B1;
}

.login-form button{
    margin-top: 80px;
    width: 475px;
    height: 65px;
    background-color: #24B23B;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.line{
    margin-top: 15px;
    height: 2px;
    width: 470px;
    background-color: #D7D7D7;
}


@media (max-width: 480px) {
.container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .left-side img {
       display: none;
    }

    .right-side {
        display: flex;
        align-items: center;
        margin-top: -70px;
    }

    .login-form {
        display: flex;
        flex-direction: column;
        margin-left: 3em;
    }

    .login-form img {
        margin-bottom: 20px;
    }

    .inputs input {
        display: flex;
        align-items: center;
        width: 275px;
        height: 80px;
    }

    .login-form button {
        margin-top: 40px;
        width: 300px;
    }

    .line{
        width: 300px;
    }
}