body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  background: #f7f5f0;
  color: #1a1a1a;
}

.registrasi-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.registrasi-msg {
  margin: 0;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
}

.beranda-btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: #8a7e6e;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.beranda-btn:hover {
  background: #756a5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

.beranda-btn:focus-visible {
  outline: 2px solid #8a7e6e;
  outline-offset: 3px;
}
