@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap");
@font-face {
  font-family: "Cherish";
  src: url("https://cinni.net/fonts/Cherish.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --accent-color: #cfa8c3;
  --base-color: #ac7491;
  --text-color: rgb(81, 60, 75);
  --input-color: rgb(255, 248, 253);
}

.fit-picture {
  width: 70px;
}

html {
  font-family: "Cherish";
  font-size: 20pt;
  color: var(--text-color);
  text-align: center;
  cursor: url("image/Normal Select.cur"), default;
}

h1 {
  color: var(--base-color);
  font-size: 80px;
  margin-bottom: 0;
}

body {
  min-height: 100vh;
  background-image: url(images/Post/Assets/Backgound/Background_Green.png);
  background-size: cover;
  overflow: hidden;
}
input {
  box-shadow: inset #cfa8c3 0 0 0 2px;
  border: 0;
  background: #ffe7f8;
  appearance: none;
  width: 60%;
  position: relative;
  border-radius: 6px;
  padding: 9px 12px;
  line-height: 1;
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 100;
  height: 35px;
  transition: all 0.2s ease;
}

input:hover {
  box-shadow: 0 0 0 0 #fff inset, #ac7491 0 0 0 2px;
}

input:focus {
  background: #feefff;
  outline: 0;
  box-shadow: 0 0 0 0 #fff inset, #ac7491 0 0 0 3px;
}

/* Placeholder styling (scoped to inputs inside .centered) */
.centered input::placeholder {
  font-family: "Pixelify Sans", "Cherish", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 300;
}

/* Vendor fallbacks */
.centered input::-webkit-input-placeholder {
  font-family: "Pixelify Sans", "Cherish", sans-serif;
  font-size: 16px;
  font-style: italic;
  color: #494a4b;
  font-weight: 300;
}
.centered input::-moz-placeholder {
  font-family: "Pixelify Sans", "Cherish", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 300;
}
.centered input:-ms-input-placeholder {
  font-family: "Pixelify Sans", "Cherish", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 300;
}

.button span {
  background: #f1f5f8;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 2px solid #494a4b;
}

.button:active {
  transform: translateY(5px);
  padding-bottom: 0px;
  outline: 0;
}

.centered button {
  width: 150px;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  background-color: var(--accent-color);
  color: var(--text-color);
  box-shadow: 0 2px 0 #494a4b;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  font-size: 20px;
  margin-top: 20px;
}

.centered button:hover {
  transform: translateY(-2px);
}

.centered button:active {
  transform: translateY(2px);
  box-shadow: none;
  outline: 0;
}

.wrapper {
  position: relative;
  text-align: center;
  color: white;
}

.centered {
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);
}
