body {
  background: #f5f6f8;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', Arial, sans-serif;
}

.coming-soon-container {
  width: 100%;
  max-width: 600px; 
  margin: 0 auto;
  text-align: center;
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222831;
  margin-bottom: 8px;
}

.coming-soon-desc {
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 32px;
}

.coming-soon-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 10px;
  margin-bottom: 8px;
  max-width: 400px; 
  margin-left: auto;
  margin-right: auto;
  gap: 20px; 
}

.coming-soon-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #222831;
  font-size: 1rem;
  padding: 6px 8px;
  outline: none;
}

.coming-soon-btn {
  background: linear-gradient(90deg, #2F9DBF, #36ACB5, #39B2B0, #45BAA8);
  color: #fff;
  border: none;
  font-size: 0.95rem;
  padding: 8px 29px; 
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  min-width: 120px; 
  transition: background 0.2s;
}

.coming-soon-btn:hover {
  background: linear-gradient(90deg, #45BAA8, #39B2B0, #36ACB5, #2F9DBF);
}

.coming-soon-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 8px;
}

.back-home-btn {
  display: inline-block;
  margin-top: 24px;
  background: #fff;
  color: #2F9DBF;
  border: 2px solid #2F9DBF;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.back-home-btn:hover {
  background: #2F9DBF;
  color: #fff;
}