:root {
  --pink: #e0a2a2;
  --white: #ffffff;
  --text-dark: #3b2b2b;
  --text-muted: #6b5b5b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, var(--pink) 0%, #f7d6d6 60%, var(--white) 100%);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.container {
  background: var(--white);
  max-width: 580px;
  width: 100%;
  border-radius: 22px;
  padding: 50px 45px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.logo img {
  max-width: 90px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  image-rendering: -webkit-optimize-contrast;
}

.brand {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.desc {
  font-size: 15.2px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 22px;
}

.love {
  font-size: 14px;
  color: #9b6a6a;
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.note {
  font-size: 13.8px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 10px;
}

.footer {
  font-size: 13.2px;
  color: var(--text-muted);
  margin-top: 28px;
}

.footer a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

/* Animasi lembut */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsif */
@media (max-width: 480px) {
  .container {
    padding: 35px 25px;
  }

  .brand {
    font-size: 22px;
  }

  .desc {
    font-size: 14.2px;
    line-height: 1.7;
  }

  .title {
    font-size: 17px;
  }
}
