html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Zilla Slab", serif;
  background: #F4EDE4;
}

h5 {
    font-weight: 600;
    font-size: 25px;
}
.activate-page {
  min-height: 100vh;
  width: 100%;
  background: #F4EDE4;
  padding: 24px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
    margin-top: -100px;
}

.logo-img {
  max-width: 120px;
  width: 70vw;
  height: auto;
}

.activate-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  padding: 18px;
}

.activate-form {
  width: 100%;
}

.voucher-input {
  min-height: 55px;
  border-radius: 12px;
  font-size: 1.05rem;
}

.name-input {
  min-height: 55px;
  border-radius: 12px;
  font-size: 1.05rem;
}

.voucher-btn {
  min-height: 55px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-primary {
  background-color: #426377 !important;
  border-color: #426377 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #385566 !important;
  border-color: #385566 !important;
}

@media (max-width: 767.98px) {
  .activate-page {
    padding: 0;
    justify-content: center;
  }

  .activate-card {
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    padding: 20px;
  }

  .activate-form {
    flex-direction: column;
  }

  .voucher-btn {
    width: 100%;
  }
}

a {
  color: #5f7b9d;
  text-decoration: none;
  font-weight: 600;
}