* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.coming-soon-container {
  position: relative;
  background: url('bg-img.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.time-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
}

.time-box span {
  font-size: 2rem;
  display: block;
  font-weight: bold;
}

.time-box small {
  font-size: 0.8rem;
}

.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-form input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 60%;
  max-width: 300px;
}

.email-form button {
  padding: 10px 20px;
  border: none;
  background-color: #ff6b6b;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #e55050;
}
