/**************************************************************************************************
// Webauftritt
//
// Version: 1.0
// Date   : 30.10.2025
// Autor  : M.Hielscher
// Desc.  : style_contact.css
// ************************************************************************************************/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

.content {
  text-align: center;
  min-height: 90vh;
}

.form-wrap {
  background: #fff;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  color: #111;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.form-row .col {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input[type="submit"] {
  background: #286090;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s;
}

input[type="submit"]:hover {
  background: #00796b;
}

input[type="submit"]:disabled {
  background-color: #ccc;
  color: #666;
  border-color: #aaa;
  cursor: not-allowed;
}

.notice {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.notice.success {
  background: #e6ffed;
  color: #085a26;
  border: 1px solid #b7f0c7;
  text-align: center;
}

.notice.error {
  background: #ffecec;
  color: #8a1f1f;
  border: 1px solid #f3c6c6;
}

.notice.success .button {
  display: inline-block;
  margin-top: 10px;
  background: #286090;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.notice.success .button:hover {
  background: #1a456e;
}