@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

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

.container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 48px 32px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  color: #1a2233;
  font-weight: 700;
}

h2 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
  color: #3a4a6b;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  color: #5a6b8c;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.notify-form {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.notify-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #dbe2ef;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.notify-form input[type="email"]:focus {
  border-color: #3a7bfd;
}

.notify-form button {
  background: #3a7bfd;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.notify-form button:hover {
  background: #2556b8;
}

.footer {
  color: #b0b8c9;
  font-size: 0.95rem;
  margin-top: 18px;
}
