
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #111;
  color: white;
  text-align: center;
}

.logo {
  max-width: 300px;
  margin: 1.5rem auto 0.3rem;
  display: block;
}

.slogans {
  margin-bottom: 2rem;
}

.slogans .slogan {
  font-size: 2rem;
  color: #2b867c;
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.slogans hr {
  width: 100%;
  max-width: 500px;
  border: 1px solid #2b867c;
  margin: 0.5rem auto;
}

.descriptions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
  position: relative;
}

.descriptions::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #2b867c;
}

@media (max-width: 768px) {
  .descriptions::before {
    display: none;
  }
}

.desc {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 0 1rem;
}

.desc h2 {
  font-size: 1rem;
  color: #2b867c;
}

.desc p {
  text-align: justify;
}

.desc p strong {
  display: block;
  text-align: center;
}

form {
  margin: 2rem auto;
  padding: 2rem;
  max-width: 500px;
  background-color: #1a1a1a;
  border-radius: 10px;
}

input[type="text"],
input[type="email"] {
  width: 90%;
  padding: 0.6rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 5px;
}

.test-text {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.checkbox-center {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

button {
  background-color: #2b867c;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

footer {
  margin-top: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #222;
}

.qr {
  max-width: 100px;
  margin-top: 1rem;
}
