body {
  background-color: pink;
  font-family: 'Great Vibes', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
  text-align: center;
}

.login-box,
.success-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 220px;
  border: 1px solid #ffb6c1;
  border-radius: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

button {
  padding: 10px 20px;
  background-color: #ff69b4;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  margin: 10px 5px;
}

button:hover {
  background-color: #ff1493;
}

.message {
  margin-top: 15px;
  color: green;
  font-size: 18px;
}

.error {
  color: red;
}

.love-image {
  width: 100%;
  max-width: 300px;
  margin: 20px 0;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

