
.wpforms-field {
  position: relative;
  margin-bottom: 2rem;
}

.wpforms-field label.wpforms-field-label {
  display: none;
}

.input-float__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 0 8px;
  font-size: 16px;
  background: transparent;
  box-shadow: none;
  color: #333;
  transition: border-color 0.3s;
}

.input-float__input::placeholder {
  color: transparent;
  transition: all 0.2s ease;
}

.input-float__input:focus {
  outline: none;
  border-color: #000;
}

.wpforms-field[data-label]::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 16px;
  color: #888;
  pointer-events: none;
  transition: 0.2s ease all;
}

.input-float__input:focus + .wpforms-field::before,
.input-float__input:not(:placeholder-shown) + .wpforms-field::before {
  top: -8px;
  font-size: 12px;
  color: #000;
}

.button {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 9999px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.button:hover {
  background: #333;
}
