.container {
    display: flex;
    height: 100vh;
    width: 100%;
    /* border: 1px solid black; */
    background-color: #F2F4F7;
}

.box1 {
    display: flex;
    width: 50%;
    height: 100vh;
    /* border: 1px solid black; */
    overflow: hidden;
    flex-direction: column;
    align-items: center;

}

img {
    height: 350px;
    width: 350px;
    padding-top: 35px;

}

* {
    margin: 0;
    padding: 0;
}

.boxA {
    display: flex;
    width: 80%;
    height: 80%;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    justify-self: center;
    justify-content: center;

}

.box2 {
    display: flex;
    width: 40%;
    height: 80%;
    margin: 70px 50px 50px 50px;
    background-color: white;
    border-radius: 10px;
}

.box2A {
    display: flex;
    width: 80%;
    height: 80%;
    /* border: 1px solid black; */
    justify-content: center;
    padding-top: 20px;
    border-radius: 10px;
}

#input1 {
    height: 50px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    border-color: 1px solid gray;
}

#input2 {
    height: 50px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
}

#button1 {
    height: 50px;
    width: 400px;
    font-size: 25px;
    color: white;
    background-color: #1877F2;
    border-radius: 10px;
}

body {
    background-color: #F2F4F7;
    ;
}

form {
    display: flex;
    flex-direction: column;
    padding: 10px 50px 50px 50px;
    text-align: center;
    align-items: center;
}

.button2 {
    height: 50px;
    width: 250px;
    font-size: 25px;
    color: white;
    background-color: #36A420;
    border-radius: 10px;
}

.logo {
    font-size: 50px;
}

.scroll1 {
    width: 100%;
    height: 400px;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .box1 {
        width: 100%;
        height: auto;
    }

    .box2 {
        width: 90%;
        margin: 20px auto;
        height: auto;
    }

    .box2A {
        width: 100%;
    }

    form {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    #input1,
    #input2,
    #button1 {
        width: 100%;
        max-width: 400px;
    }
}