.sharetstm{
    box-shadow: 0px 0px 5px grey;
    padding-top: 20px;
}

.sharetstm .container{
    display: flex;
    justify-content: space-between;
}

.sharetstm--left{
    width: 30%;
}

.sharetstm--left--top{
    background-color: #191b20;
    padding: 40px 20px;
}

.sharetstm--left--bottom{
    padding: 40px 0;
}

.sharetstm--left--bottom ul{
    list-style-type: none;

}

.sharetstm--right{
    width: 65%;
}

form{

}

form div{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

form div input{
    font-size: 1rem;
    padding: 10px 10px;
    margin-top: 5px;
    background-color: rgb(228, 225, 225);
}

form div button{
    width: fit-content;
    padding: 10px 30px;
    font-size: 1rem;
    cursor: pointer;
    background-color: dodgerblue;
    color: white;
    border: none;
}

form div button:hover{
    background-color: rgb(23, 97, 172);
}

@media (max-width: 550px) {
    .sharetstm .container{
        flex-direction: column;
    }
    .sharetstm--left{
        width: 100%;
    }
    .sharetstm--right{
        width: 100%;
    }
}