/* beranda main style start */
main {
  align-items: center;
  justify-content: center;
}
/* beranda main style end */

/* beranda hero section style start */
#hero {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
}

#hero-logo {
  width: 60%;
  margin-bottom: 1.5rem;
}

#hero h2 {
  line-height: 2.5rem;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
/* beranda hero section style end */

/* beranda button style start */
.btn-login {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn-login:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-login:active {
  transform: translateY(0);
}
/* beranda button style end */
