/* Grundlayout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #131e30;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Containerbereich */
.container {
  text-align: center;
  padding: 40px 20px;
  max-width: 560px;
  width: 100%;
}

/* Logo */
.logo {
  max-width: 300px;
  width: 80%;
  margin-bottom: 20px;
  mix-blend-mode: screen;
}

/* Texte */
h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
}

.subtext {
  font-size: 1rem;
  font-weight: 300;
  color: #a6a6a6;
  margin-bottom: 40px;
}

/* Formular */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  background-color: #1e2d45;
  border: 1px solid #a6a6a6;
  border-radius: 6px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  width: 100%;
}

textarea {
  height: 140px;
  resize: vertical;
}

button {
  background-color: #488d94;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px;
}

button:hover {
  background-color: #3a7a80;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  color: #488d94;
  font-size: 0.95rem;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}
