form {
  background: #E6BDBC;
  border-radius: 25px;
  padding: 30px;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 5px dashed #fff;
  height: fit-content;
  transition: all 0.3s ease;
}

h2, h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}
label {
  font-weight: 500;
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
}
#customForm select,
#customForm input[type="text"] {
  width: 100%;
  padding: 10px 0 10px 10px;
  border-radius: 15px;
  border: none;
  background: #fff;
  font-family: 'Nohemi', sans-serif;
  font-size: 1em;
}
#customForm button {
  display: block;
  margin: 30px auto 0;
  padding: 12px 30px;
  border: none;
  background: #fff;
  color: #E6BDBC;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
#customForm button:hover {
  background: #f9f0eb;
}
.section-group {
  background-color: #fff6ee;
  border: 2px dashed #e0a87a;
  border-radius: 20px;
  padding: 15px 20px;
  margin-top: 15px;
  animation: fadeIn 0.4s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

#customForm input[type="file"] {
  width: 100%;
  padding: 8px;
  border-radius: 15px;
  background: #fff;
  font-family: 'Nohemi', sans-serif;
  font-size: 1em;
  border: none;
}
#formFieldsContainer p {
  background: #fff5f0;
  padding: 15px;
  border: 2px dashed #ffbca2;
  border-radius: 12px;
}
