* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100vw;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #272A31;
}

.container-main {
    width: 28%;
    height: auto;
    overflow: hidden;
    padding: 1vw;
    border: 2px solid #434DD6;
    border-radius: 20px;
    background-color: #FFFDFF;
}

.container-inside {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 1vw; */
    /* background-color: cadetblue; */
}

.top-section {
    width: 100%;
    height: 20%;
    padding: 1vw;
    margin-top: 10px;
    /* background-color: red; */
}

.top-section h3 {
    font-size: 1.1vw;
    margin-bottom: 10px;
}

.input-section {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: blueviolet; */
}

.input-section input {
    width: 25vw;
    height: 6.5vh;
    border: 2px solid #434DD6;
    padding: 1vw;
    border-radius: 8px;

}

/* middle section */


.img-section img {
    display: none;
    width: 10vw;
    height: 10vw;
    margin: 25px 5px;
}

/* bottom-section */


.bottom-section {
    width: 100%;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: darkgoldenrod; */
}


.bottom-section button {
    width: 25vw;
    height: 7vh;
    border: none;
    border: 2px solid #434DD6;
    border-radius: 5px;
    background-color: #434DD6;
    color: #fff;
    margin: 30px 0 35px 0;
}


@media (max-width:600px) {
    .main {
        width: 100vw;
        height: 100vh;
    }

    .container-main {
        width: 90vw;
        height: auto;
    }

    .container-inside {
        padding: 2vw;
        width: 100%;
        height: 100%;
        justify-content: space-between;
        gap: 0vw;
    }

    .top-section {
        width: 100%;
        height: 20%;
        /* background-color: red; */
    }

    .top-section h3 {
        font-size: 5vw;
        margin-left: 6px;
    }

    .input-section {
        width: 100%;
        height: 100%;
    }

    .input-section input {
        padding: 3vw;
        width: 80vw;
        height: 10vw;
        font-size: 4.5vw;
    }

    /* middle section */

    .img-section img {
        width: 50vw;
        height: 50vw;
        margin: 25px 5px;
    }

    /* bottom section */

    .bottom-section {
        width: 100%;
        height: 20%;
        /* background-color: red; */
    }

    .bottom-section button {
        font-size: 4.8vw;
        width: 80vw;
        height: 13vw;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}