* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F5F1EA;
  color: #1C1C1C;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 700px;
  padding: 20px;
}

.logo {
  width: 400px;
  margin-bottom: 30px;
  opacity: 0.9;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.subtext {
  color: #8A8A8A;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.launching {
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 30px;
  color: #A67C3D;
}

.email-box {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  outline: none;
  width: 250px;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
  transition: border 0.3s;
}

input:focus {
  border-color: #C8A96A;
}

button {
  padding: 12px 20px;
  border: none;
  background-color: #C8A96A;
  color: white;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.3s;
}

button:hover {
  background-color: #A67C3D;
}

.note {
  font-size: 13px;
  color: #8A8A8A;
  margin-bottom: 40px;
}

footer {
  font-size: 12px;
  color: #8A8A8A;
}

@media (max-width: 600px) {
  h1 {
    font-size: 30px;
  }

  .email-box {
    flex-direction: column;
  }

  input, button {
    width: 100%;
    border-radius: 4px;
    margin: 5px 0;
  }
}
