main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 2.6rem;
  padding: 2.4rem;
}

article {
  width: min(112rem, 92vw);
  border: 1px solid var(--border);
  border-radius: 2.2rem;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: linear-gradient(165deg, rgba(23, 34, 54, 0.92), rgba(12, 19, 30, 0.92));
  box-shadow: var(--shadow);
}

article img {
  width: 100%;
  height: auto;
  border-radius: 1.4rem;
}

.btn-entrar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 5.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffd873);
  color: #2b1f00;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(255, 191, 70, 0.35);
  transition: box-shadow 0.22s ease;
}

.btn-entrar:hover {
  box-shadow: 0 20px 35px rgba(255, 191, 70, 0.45);
}
