
.itemForm{
    margin-top: 12px;
    background-color: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 24px;
    padding-top: 22px;
    position: relative;
}

.lightTop{
  background-color: rgb(32, 46, 102);
    color: rgba(255, 255, 255, 1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 10px;
    left: -1px;
    position: absolute;
    top: -1px;
    width: calc(100% + 2px);
}

.itemForm h2{
  font-size: 24pt;
  font-weight:600;
}

.itemForm p{
  font-size:12pt;
  font-weight:600;
  color:#444;
}

.itemForm input,
.itemForm input:focus-visible{
  padding:8px 0px;
  border-left:none;
  border-top:none;
  border-right:none;
  outline:none;
  transition:all .5s;
}

.itemForm input:focus-visible{
  border-color:#444;
}

.itemForm select{
  padding:8px 0;
  width:100%;
  border:2px solid #f1f1f1;
  border-radius:4px;
}

.btn_submit{
  background-color: rgb(32, 46, 102);
  padding:5px 24px;
  border:none;
  border-radius:4px;
  color:#fff;
  font-weight:600;
}


