body {
  font-family: 'Arial', sans-serif;
  background-color: #f4e3cf; /* Light beige, like parchment */
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #583d72; /* A deep purple, like amethysts */
}

.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 80%;
  max-width: 600px;
}

h1 {
  color: #b3446c; /* Rose color, like rubies */
  margin-bottom: 20px;
}

input[type="password"] {
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #d8b4a0; /* Sandy brown, like a treasure chest */
  border-radius: 8px;
  width: 70%;
  font-size: 16px;
}

button {
  background-color: #b3446c; /* Rose color */
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #963758; /* Darker rose color */
}

.hidden {
  display: none;
}

#heartfeltMessage {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.heart {
  width: 100px;
  height: 90px;
  position: relative;
  margin: 0 auto;
  animation: pulse 1.5s infinite;
}

/* Share buttons styling */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.share-btn {
  background: linear-gradient(180deg, #b3446c, #963758);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.share-btn:hover {
  filter: brightness(0.95);
}

/* small 'shared by' note on login */
#sharedBy {
  opacity: 0.95;
}

.heart:before,
.heart:after {
  position: absolute;
  content: "";
  left: 50px;
  top: 0;
  width: 50px;
  height: 80px;
  background: #e53935;
  border-radius: 50px 50px 0 0;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.heart:after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}