@font-face {
  font-family: 'Comic Neue';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKw.ttf) format('truetype');
}
@font-face {
  font-family: 'Comic Neue';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4g.ttf) format('truetype');
}
@font-face {
  font-family: 'Comic Neue';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKw.ttf) format('truetype');
}
@font-face {
  font-family: 'Comic Neue';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwps.ttf) format('truetype');
}
@font-face {
  font-family: 'Comic Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx60.ttf) format('truetype');
}
@font-face {
  font-family: 'Comic Neue';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwps.ttf) format('truetype');
}
@font-face {
  font-family: 'Protest Riot';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/protestriot/v2/d6lPkaOxWMKm7TdezXFmpkrM1w.ttf) format('truetype');
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Comic Neue", cursive;
}
body {
  width: 100%;
  height: 100svh;
  background-color: #B95CF4;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: url('cat.png'), auto;
}
body .login {
  width: 500px;
  padding: 25px;
  background-color: #D397F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
body .login img {
  width: 100%;
}
body .login p {
  width: 100%;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: white;
  margin: 10px 0;
}
body .login span {
  color: red;
  width: 100%;
  text-align: center;
  display: none;
}
body .login input {
  width: 100%;
  outline: none;
  border: 1px solid #B95CF4;
  padding: 5px 10px;
  background-color: transparent;
  color: white;
  font-size: 24px;
  border-radius: 25px;
  text-align: center;
  margin: 10px 0;
}
body .login input::placeholder {
  color: #B95CF4;
  opacity: 0.5;
}
body .login button {
  width: 100%;
  padding: 5px 10px;
  font-size: 24px;
  color: white;
  border-radius: 25px;
  background-color: #B95CF4;
  outline: none;
  margin: 10px 0;
  border: none;
  cursor: pointer;
}
body .message {
  width: 500px;
  padding: 25px;
  background-color: #D397F8;
  display: none;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
body .message img {
  width: 100%;
}
body .message p {
  width: 100%;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: white;
  margin: 10px 0;
}
body .message span {
  color: red;
  width: 100%;
  text-align: center;
  display: none;
}
body .message input {
  width: 100%;
  outline: none;
  border: 1px solid #B95CF4;
  padding: 5px 10px;
  background-color: transparent;
  color: white;
  font-size: 24px;
  border-radius: 25px;
  text-align: center;
  margin: 10px 0;
}
body .message input::placeholder {
  color: #B95CF4;
  opacity: 0.5;
}
body .message .buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
body .message .buttons button {
  width: 100%;
  padding: 5px 10px;
  font-size: 24px;
  color: white;
  border-radius: 25px;
  background-color: #B95CF4;
  outline: none;
  margin: 10px 0;
  border: none;
  cursor: pointer;
}
@keyframes fall {
  to {
    transform: translateY(100vh);
    opacity: 0;
  }
}
.heart {
  position: fixed;
  top: -50px;
  will-change: transform;
  color: red;
  font-size: 24px;
  /* You can adjust the size */
  opacity: 1;
  animation: fall linear forwards;
  z-index: 10000;
}
