/* === Base structure and background === */
body {
  margin: 0;
  font-family: sans-serif;
}

.subscribe-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
/*  overflow: hidden; */
  background: url('/media/ssb-blur.webp')  no-repeat center center / cover;
}

/* Subscribe Form Wrapper */
.subscribe-form {
  background-color: rgba(0, 0, 50, 0.5);
  border: 2px solid white;
  border-radius: 10px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  color: white;
  text-align: center;
}
