body,
html {
  height: 100%;
  margin: 0;
  background-color: #333334;
  font-family: "Barlow", sans-serif;
  color: white;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 80px;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.straumann-logo {
  height: 60px;
  width: auto;
}

.centered-text {
  text-align: center;
}

.centered-button {
  display: block;
}

.gold {
  color: #f4b700;
}

button,
.button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.button:hover {
  color: #f4b700;
  border-color: #f4b700;
  text-decoration: none;
}

.input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: 2px solid var(--bs-border-color);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

a {
  color: white;
  text-decoration: underline;
}

a:hover {
  color: #f4b700;
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .logo {
    height: 60px;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .straumann-logo {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .straumann-logo {
    height: 30px;
  }
}
