body {
  background-color: var(--accent-color);
}

.nav {
  position: unset;
}

.agreements__section {
  padding: 70px 5% 60px;
  color: var(--primary-color);
}

input[type="email"] {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1.6rem;
  width: 100%;
  max-width: 330px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: -6px 0 12px rgba(0, 0, 0, 0.15), 6px 0 12px rgba(0, 0, 0, 0.15);
  transform: translateZ(0); /* Initial stable depth */
}

input[type="email"]:focus {
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1), 2px 0 6px rgba(0, 0, 0, 0.1);
  transform: translateY(2px); /* Slight "dip" inward */
}

input[type="email"]::placeholder {
  opacity: 0.5;
  font-size: 1.6rem;
  font-weight: 400;
}

.newsletter__form {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}
