
#cwsf-formular {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 24px 28px;
  max-width: 440px;
  margin: 40px auto 32px auto;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10), 0 1.5px 6px rgba(255,176,102,0.10);
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
}
.cwsf-field {
  margin-bottom: 22px;
}
.cwsf-field input[type="text"],
.cwsf-field input[type="email"],
.cwsf-field select,
.cwsf-field textarea {
  width: 100%;
  padding: 16px 14px;
  border: 1.5px solid #ffb066;
  border-radius: 8px;
  background: #fff6eb;
  color: #222;
  font-size: 1.13em;
  margin-top: 4px;
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.2s;
}
.cwsf-field input[type="text"]:focus,
.cwsf-field input[type="email"]:focus,
.cwsf-field select:focus,
.cwsf-field textarea:focus {
  border: 1.5px solid #e6a04e;
  box-shadow: 0 0 0 2px #ffe2c2;
  outline: none;
}
.cwsf-field textarea {
  min-height: 80px;
  resize: vertical;
}
.cwsf-btn {
  width: 70%;
  background: linear-gradient(90deg, #e6a04e 0%, #b97a3c 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.18em;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  cursor: pointer;
  margin: 0 auto 8px auto;
  display: block;
  box-shadow: 0 2px 8px rgba(230,160,78,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.cwsf-btn:hover {
  background: linear-gradient(90deg, #b97a3c 0%, #e6a04e 100%);
  box-shadow: 0 4px 16px rgba(185,122,60,0.13);
}
.cwsf-datenschutz {
  display: flex;
  align-items: center;
  font-size: 1em;
  margin-bottom: 10px;
}
.cwsf-datenschutz label {
  margin-left: 10px;
}
.cwsf-status-message {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 16px 12px;
  border-radius: 8px;
  font-size: 1.08em;
  text-align: center;
  box-shadow: 0 1px 6px rgba(230,160,78,0.10);
}
.cwsf-status-message.cwsf-info {
  background: #fff6eb;
  color: #b97a3c;
  border: 1.5px solid #ffb066;
}
