.insert {
  padding-left: 20px;
  padding-right: 20px;
  color: #000000;
  border: 1px solid #000000;
}
input, select, textarea {
  background-color: #ffffff;
  color: #000000;
  font-size: 15px;
  border: 1px solid #000000;
  cursor: text;
  height: 20px;
  padding: 2px 4px;
  margin: 1px 4px;
  position: relative;
  right: 5px;
  border-radius: 10px 5px 10px 5px;
  box-shadow: rgba(0,0,0,.5) 0 1px 8px 0;
  color: #000000;
}
select, input[type=color] {
  height: 27px;
  cursor: pointer;
}
select::selection{
  cursor: pointer;
}
textarea {
  height: 300px;
}
textarea.form {
  height: 150px;
}
::-webkit-resizer {
  display: none;
}
input:disabled, input.form:disabled, select:disabled, select.form:disabled, textarea:disabled {
  background-color: #EDEDED;
  color: #909090;
  border: 1px solid #909090;
  cursor: not-allowed;
}
input:invalid, select:invalid, textarea:invalid {
  border: 1px solid #ff0000;
  animation: blink 1s;
  animation-iteration-count: infinite;
}
@keyframes blink { 50% { border-color: #000000; }  }
input.form, textarea.form{
  width: calc(100% - 8px);
}
select.form{
  width: calc(100% + 3px);
}