* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url("/static/images/background.jpg") center/cover no-repeat fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  color: #fff;
  animation: fadeIn 1.2s ease;
}

.brand {
  font-size: 2.8em;
  margin-bottom: 24px;
  letter-spacing: 2px;
  font-weight: 600;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  text-decoration: none;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #00b894;
}

.secondary {
  background: #0984e3;
}

.btn:hover {
  opacity: 0.9;
}

@media (min-width: 700px) {
  .buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.brand-logo {
  width: clamp(120px, 20vw, 220px);
  max-width: 80%;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
