/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #f4f8ff, #dde9f8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.container {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 300px;
  max-width: 80vw;
  margin-bottom: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.headline {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a2b49;
  margin-bottom: 40px !important;
}

.contact-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #d0d7e2;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  outline: none;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1a2b49;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0f1a30;
}
