body {
  background-color: #fdedf0;
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 0;
}
#info {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px);
}

#info form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

#info form label {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: block;
  text-align: left;
}

#info form input[type="text"] {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 16px;
}

#info form input[type="submit"] {
  background-color: #ff3f6c;
  color: white;
  border: none;
  width: 100%;
  padding: 10px 20px;

  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

#info form input[type="submit"]:hover {
  background-color: #d81b60;
}

#info form p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

#info form a {
  color: #f43397;
  text-decoration: none;
}

#info form a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .swal2-container .swal2-input {
    width: 100%;
    max-width: 190px;
    box-sizing: border-box;
  }

  #info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 20px;
    min-height: calc(100vh - 300px);
  }
}
