/* Google Font Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
  --form-primary: #0c2139;
  --form-secondary: #5d3d17;
  --form-primary-dark: #051c37;
  --body-background: #ffefdd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--body-background) !important;
}

.text-green {
  color: #63927c;
}

.button-87 {
  margin: 10px;
  margin-bottom: 26px;
  padding: 50px 64px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.45s ease;
  background-size: 200% auto;
  color: #4b2a45;
  border-radius: 10px;
  display: block;
  border: 0;
  font-weight: 700;
  box-shadow: 0 10px 20px -12px rgba(75, 42, 69, 0.45);
  background-image: linear-gradient(
    45deg,
    #ebdaea 0%,
    #f7ecf4 50%,
    #fcedec 100%
  );
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  text-decoration: none;
  font-size: 2rem;
}

.button-87:hover {
  background-position: right center;
  transform: translateY(-2px);
  text-decoration: none;
  color: #63927c;
}

.button-87:active {
  transform: scale(0.97);
}

.button-87:focus {
  outline: 3px solid rgba(75, 42, 69, 0.12);
  outline-offset: 3px;
}

/* Lighter / ghost variant */
.button-87.ghost {
  background: transparent;
  color: #4b2a45;
  border: 1.5px solid rgba(75, 42, 69, 0.12);
  box-shadow: none;
}

.button-87.ghost:hover {
  background-image: linear-gradient(
    45deg,
    rgba(235, 218, 234, 0.95) 0%,
    rgba(247, 236, 244, 0.95) 50%,
    rgba(252, 237, 236, 0.95) 100%
  );
  transform: translateY(-2px);
}
