/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=1674&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  border-bottom: 2px dotted white;
  display: inline-block;
  padding-bottom: 5px;
}

.tagline {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  margin: 1rem 0 2rem;
  line-height: 1.4;
  border-bottom: 2px dotted white;
  padding-bottom: 10px;
}

.form-container h2 {
  font-weight: normal;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="text"],
input[type="email"] {
  padding: 0.75rem;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 5px;
  font-size: 1rem;
}

input::placeholder {
  color: #eee;
}

button {
  padding: 0.75rem;
  background-color: rgba(0, 106, 255, 0.754);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e67e00;
}

#responseMessage {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 0.9rem;
}
