.wrapper_form_design_project {
display: flex;
  max-width: 1111px;
  flex-direction: column;
  position: relative;
  padding: 18px;
  border-radius: 3px;
}
.modal_design_project_close{
    position: absolute;
}
#form_design_project {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form_design_project_box {
  display: flex;
  width: calc(50% - 10px);
}
.form_rows {
display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.form_row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.btn_form_design_project {
  background-color: #3f3f3f;
  border-color: #3f3f3f;
  color: #fff;
  min-height: 48px;
  transition: all 0.3s ease;
  width: max-content;
}
.btn_form_design_project:hover{
    background-color: #700000;
  border-color: #800000;
  color: #ffffff;
}
.form_design_project_title {
  color: #000;
  text-align: left;
  text-shadow: 0px 0px 0px rgba( 2, 2, 2, 0.23 );
  font-family: inherit;
  font-weight: 100;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 12px;
}
.modal_design_project_close {
  position: absolute;
  height: 26px;
  width: 26px;
  left: auto;
  right: -13px;
  bottom: auto;
  top: -13px;
  padding: 0px;
  color: #fff;
  font-family: Arial;
  font-weight: 100;
  font-size: 24px;
  line-height: 24px;
  border: 2px solid #fff;
  border-radius: 26px;
  box-shadow: 0px 0px 15px 1px rgba( 2, 2, 2, 0.75 );
  text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
  background-color: rgb(0, 0, 0);
  z-index: 99;
}
#form_design_project input {
  max-width: 100%;
}
.form_design_project_box .form_row {
  height: 100%;
}
.form_design_project_box textarea {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
#form_design_project label {
  flex-direction: row;
}
#form_design_project .form_row_btns {
  display: flex;
  flex-direction: revert;
  gap: 20px;
}
#form_design_project input.validete {
  border: 2px solid red;
}