.header h1 {
  flex: 1;
  text-align: center;
  font-size:  24px;
}

.back-btn {
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20%;
  width: 35px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.back-btn-img {
  width: 25px;
  height: 25px;
}

.form-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  outline: none;
  font-size: 1rem;
}

.file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border: 2px dashed #000;
  background: #ccc;
  border-radius: 8px;
  cursor: pointer;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.file-upload input {
  display: none;
}

.attachment-img {
  width: 30px;
  height: 30px;
}

.submit-btn {
  background: #222;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ff4040;
  color: #000;
}
