*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: blueviolet;
}
.container{
    width: 60%;
    border: 1px solid white;
    box-shadow: 2px 2px  10px black;
    display: block;
    margin:100px auto;
    height: 30rem;

}
.form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border-radius: 20px;
}
.left{
        display: flex;
        flex-direction: column;
        text-align: center;
        text-align: center;
        width: 100%;

        height: 30rem;
        background-color: rgb(116, 194, 227);
}
.left-container{
    margin-top: 60px;
    padding: 20px;
}
.left-container p{
    margin-top: 40px;
    font-size: 20px;
}
.right{
        width: 100%;
        height: 30rem;
        background-color: white;
}
.container-form{
  padding: 20px 40px;
}
h1{
    color: white;
   font-size: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 900;
}
h2{
    font-weight: 900;
    margin-top: 10px;
    font-size: 30px;
    text-align: center;
    text-shadow: 2px 2px 10px black;
}
.right p{
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    text-shadow: 2px 2px 10px black;
}

.container-form input ,textarea{
    width: 90%;
    height: 70;
    margin-top: 20px;
    padding:10px;
    font-size: 15px;
    background-color: rgb(228, 223, 223);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: none;
}

button{
margin-top: 30px;
padding: 10px;
width: 40%;
display: block;
margin: auto;
background-color: blueviolet;
border-radius: 20px;
border: none;
font-weight: 700;
}
button:hover{
background-color:rgb(87, 205, 255)

}