/* Reset and base */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(to bottom, #ebebeb, #d3e2ff);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
  padding: 20px;
}

/* Container */
.container {
  max-width: 704px;
  padding: 30px;
  text-align: center;
}

/* Headings & text */
h1 {
  font-size: 2.7em;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 40px;
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.note {
  font-size: 0.95em;
  color: #000;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Form */
.form_wrapper {
  margin-top: 40px;
  text-align: left;
  margin: 0 auto;
  width: 100%;
  max-width: 530px;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.email-form input[type="email"] {
  padding: 12px 16px;
  border-radius: 6px;
  outline: none;
  border: none;
  font-size: 1em;
  background-color: #10367d12;
  width: 75%;
}

.email-form button {
  padding: 12px 20px;
  background-color: #10367d;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #083b8a;
}

/* Notes & error */
.input_note {
  font-size: 13px;
  font-weight: 300;
  margin-left: 6px;
}

.error {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .email-form input[type="email"] {
    width: 100%;
  }

  .email-form button {
    width: 100%;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 0.95em;
  }

  .form_wrapper {
    width: 100%;
  }
}
