/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Main container card */
.container {
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
  animation: fadeIn 0.8s ease-in-out;
}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo .icon {
  background: #004aad;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004aad;
}

/* Headings */
.coming-soon {
  font-size: 3rem;
  font-weight: 800;
  color: #004aad;
  margin-bottom: 10px;
}

.headline {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Form */
.notify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.notify-form input {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  min-width: 260px;
  flex: 1;
  font-size: 1rem;
  transition: 0.3s;
}

.notify-form input:focus {
  border-color: #004aad;
  outline: none;
  box-shadow: 0px 0px 6px rgba(0,74,173,0.3);
}

.notify-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: #004aad;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.notify-form button:hover {
  background: #003080;
  transform: translateY(-2px);
}

/* Text */
.small-text {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

/* Footer */
.footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #777;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
