form {
  flex-direction: column;
  background-color: var(--tbl_bkgr);
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

fieldset {
  display: flex;
  flex-direction: column;
  height: calc(100% - 42px);
  border: 0;
  padding: 20px 15px 15px 15px;
}

label {
  display: inherit;
  width: 120px;
  font-size: 0.85rem;
  justify-content: flex-end;
  font-weight: 400;
  padding-right: 10px;
  line-height: 42px;
  color: var(--input_txt);
}

input {
  max-width: 100%;
  height: 42px;
  padding-left: 20px;
  font-size: 1rem;
  color: var(--txt);
}

.rowbox {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

/*
.rowbox {
  display: flex;
  flex-direction: row;
  height: fit-content;
  width: 100%;
  flex: 1;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 5px;
}
*/
.rowboxbig {
  display: flex;
  flex-direction: row;
  height: 110%;
}

textarea {
  padding-top: 10px;
  min-height: 200px;
  resize: vertical;
  height: inherit;
}

input:not(.login),
textarea {
  display: inline-block;
  box-sizing: border-box;
  font-size: 1rem;
  width: 100%;
  height: 105%;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 400;
  border: 0;
  background-color: var(--bkgr);
  color: var(--input_txt);
}

/*--------------------------------------------------------------*/
