.myform {
  background: linear-gradient(135deg, rgb(26, 113, 179), rgb(50, 70, 120));
  border-radius: 20px;
  padding: 10px 20px;
  width: 50%;
  margin-top: 1vh;
  margin-bottom: 1vh;
  margin-left: 30px;
  margin-right: 30px;
  height: max-content;
}
.title-form{
  color: white;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
.informations-container{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
overflow-y: scroll;
height: max-content;
}
.informations-container::-webkit-scrollbar{
width: 0;
}
.informations-wrapper{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.input-box-title{
user-select: text;
width: 100%;
}
.input-box{
user-select: text;
width: calc(100% / 2 - 20px)
}
.input-description{
user-select: text;
caret-color: black;
width: 100%;
}
.form-input-title{
  color: white;
  font-size: 14px;
  width: 100%;
}
.input {
  caret-color: black;
  background-color: white;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: black;
  font-size: 14px;
  outline: 0;
  padding: 0px 20px 0px;
  width: 100%;
  resize: vertical;
  font-family: sans-serif;
}


.submit {
  background-color: rgb(60, 70, 78);
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  font-size: 14px;
  height: 40px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}
