*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

body{
    width: 100%;
    display: flex;
    height: 100vh;
    background-color: blueviolet;
}

.leftPart{
    flex-basis: 50%;
    background-color: aqua;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content{
    flex-basis: 33%;
    background-color: white;
}

.rightPart{
    flex-basis: 50%;
    background-color: rgb(187, 129, 218);
    height: 100%;
}

.leftPart .content label{
    background-color: teal;
    display: block;
    color: black;
    padding: 10px 0px;
    padding-left: 10px;
}

.leftPart .content textarea{
    /* width: calc(100%-20px); */
    padding: 10px;
    background-color: rgb(46, 44, 44);
    color: white;
    outline: none;
    border: none;
    /* height: calc(82%-20px); */
    width: 800px;
    height: 170px;
}

.rightPart label{
    display: block;
    padding: 10px;
    background-color: rgb(87, 91, 170) ;
    color: white;
}

.rightPart iframe{
    display: block;
    width: 100%;
    height: 94%;
    box-sizing: border-box;
    border: 7px solid black;
}