* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: system-ui, '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', sans-serif;
}

.coming-soon-container {
  background: linear-gradient(to right, #6b4c35, #b08968);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: bisque;
  padding: 2rem;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
}

.countdown span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.countdown small {
  font-size: 0.8rem;
}

form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

form input {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  width: 250px;
  max-width: 80%;
}

form button {
  padding: 0.7rem 1.5rem;
  background-color: #fff;
  color: #6b4c35;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #f3e9e0;
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 2.2rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
}
