* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

.contact-form h1 {
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #e21b23;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b9171d;
}

#status {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}
