@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background: #808080;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
body {
  background-color: #1f1f1f;
  color: #fff;
}
.container {
    display: flex;
  width: 100%;
  height: 100vh;
  padding: 1.5rem;
}
.left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.left textarea {
  max-height: 30%;
  min-height: 28%;
  max-width: 95%;
  min-width: 95%;
  outline: none;
  padding: 5px;
  font-family: inherit;
  background-color: #404040;
  border: none;
  color: #fff;
  font-size: 1.1rem;
}
.right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;

}
iframe{
    width: 100%;
    height: 96%;
    background: #fff;
    border: 0;
    outline: 0;
}
label{
    display: flex;
    align-items: center;
}
label i {
    margin: 0px 10px;
}