* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  /*  background-image: url("/images/background.jpg"); */
  background-color: rgb(173, 173, 173);
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
  flex: 1;
}

html, body {
  height: 100%;
  margin: 0;
} 

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: auto;
}

main {
  flex: 1;
}
.kontakt-wrapper {
  max-width: 600px;
  margin: 20px auto;
  padding: 2rem;
  background-color: #fff;
  color: black;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.kontakt-wrapper h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.kontakt-wrapper form {
  display: flex;
  flex-direction: column;
}

.kontakt-wrapper label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.kontakt-wrapper input,
.kontakt-wrapper textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.kontakt-wrapper button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #006400;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kontakt-wrapper button:hover {
  background-color: #228b22;
}

.form-success {
  color: green;
  text-align: center;
}

.form-error {
  color: red;
  text-align: center;
}
