:root {
    --BoxWidth: 
}
*{
    font-family: 'Roboto', sans-serif;
    font-size: x-large;
    font-weight: 400;
    color: goldenrod;
    background-color: #232323;
    border: 0;
    padding: 0;
    margin: 0;
}
.InputContainer{
    background-color: #000033;
    width: 100%;
    height: calc((100vh - 1vh)/2);
}
body{
    background-color: black;
}
.InpBox{
    background-color: aquamarine;
    display: inline-flex;
    width: 49vw;
}
textarea{
    resize: none;
    width: calc((100vw - 2vw)/2);
    height: 100%;
    display: inline;
}
.Box{
    width: calc((100vw - 2vw)/2);
    height: calc((100vh - 1vh)/2);
}
#inp2{
    float: right ;
    right: 0;
}
.OutputAndOptionsContainer{
    background-color: #000033;
    width: 100%;
    margin-top: 1px;
    height: calc((100vh - 1vh)/2);
}
.OptionsBlock{
    display: inline-block;
    /* background-color: 000033; */
    width: calc((100vw - 2vw)/2);
    height: calc((100vh - 1vh)/2);
}
.OutputBlock{
    display: inline-block;
    position: absolute;
    right: 0;
    background-color: black;
    width: calc((100vw - 2vw)/2);
    height: calc((100vh - 1vh)/2);
}
button{
    border: black 1px solid;
    padding: 3px 7px 3px 7px;
    margin: 5px 5px 5px 5px;
}
.lblCheckBox{
    border: black 1px solid;
    padding: 3px 7px 3px 7px;
    margin: 5px 5px 5px 5px;
    /* background-color: aliceblue; */
}
.WorkButtons{
    display: block;
}