body {
  background: #fadadd;
  text-align: center;
}

.container {
  max-width: 600px;
  background: white;
  border-radius: 10px;
  margin: 50px auto;
  color: black;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  font-family: "Playfair", serif;
  font-weight: 400;
  color: #333;
}
h2 {
  font-weight: 800;
}

.contents {
  text-align: left;
  line-height: 1.5;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #555;
  margin-top: 30px;
  background-color: #faf4f4;
  border-left: 5px solid #f57783;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 4px 30px 9px rgba(39, 33, 66, 0, 03);
}

.contents strong {
  color: #f10c23;
}

.hidden {
  display: none;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

form {
}

.hint {
  line-height: 1.5;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 5px;
}
.form-wrap,
button {
  margin: 20px;
}

input {
  outline: none;
}

button,
input {
  padding: 12px 35px;
  background: #fadadd;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
}

button:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
