body{
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(to right, #f0c389 0%, #b3c99b 40%, #bedef7 100%);
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  box-sizing:border-box;
}

#FeedbackForm{
  width:100%;
  max-width:900px;
}

.form-shell{
  background:#ffffff;
  border:1px solid #144146;
  border-radius:8px;
  box-shadow:0 1.5vh 4vh rgba(0,0,0,0.08);
  padding:30px;
}

.form-title{
  margin:0;
  font-size:30px;
  font-weight:600;
  color:#144146;
}

.form-subtitle{
  margin:6px 0 25px 0;
  color:#5f6b76;
}

fieldset{
  border:none;
  padding:0;
}

.form-row{
  display:flex;
  gap:16px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.form-group{
  flex:1;
}

label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:8px;
  color:#144146;
}

input,
select,
textarea{
  width:100%;
  padding:12px;
  border:1px solid #d8dee6;
  border-radius:6px;
  font-size:15px;
  box-sizing:border-box;
  font-family:inherit;
}

textarea{
  min-height:200px;
  resize:vertical;
}

#FeedbackFile{
  display:none;
}

.drop-zone{
  border:2px dashed #cfd8dc;
  border-radius:10px;
  background:#fafafa;
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  transition:all .2s;
}

.drop-zone:hover{
  border-color:#144146;
  background:#f7fbfc;
}

.drop-zone.is-dragover{
  border-color:#82CD82;
  background:#f1fbf1;
}

.drop-zone-icon{
  font-size:28px;
  margin-bottom:6px;
}

.drop-zone-title{
  font-weight:600;
  color:#144146;
}

.drop-zone-text{
  color:#667085;
  font-size:14px;
}

.file-list{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.file-item{
  border:1px solid #d8dee6;
  border-radius:6px;
  padding:8px 10px;
  font-size:14px;
  display:flex;
  justify-content:space-between;
}

.form-actions{
  margin-top:20px;
}

#SubmitButton{
  padding:12px 22px;
  background:#144146;
  color:white;
  border:none;
  border-radius:100px;
  cursor:pointer;
  font-weight:600;
  transition: background 0.25s ease, color 0.25s ease;
}

#SubmitButton:hover{
  background:#82CD82;
  color:#144146;
}