p.ss-small {
  font-family: "ClashDisplay", sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-top: 12px;
}

/* wrapper for positioning */
.text-field-wrapper {
  position: relative;
  width: 100%;
}

/* actual input */
.text-field {
  z-index: 1;
  height: 55px;
  padding-left: 15px;
  padding-right: 32px;
  font-family: "ClashDisplay", sans-serif;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  border-radius: 0px !important;
  border: 1px solid #ccc;
  width: 100%;
}

/* overlay element */
.text-field-tri {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 2;
  border-top: 22px solid #363aff;
  border-left: 22px solid transparent;
  background: transparent;
  pointer-events: none;
}

/* textarea fix */
textarea.text-field {
  height: auto;
  min-height: 120px;
  padding-top: 10px;
  padding-right: 32px;
}

/* optional focus effect */
.text-field:focus {
  outline: none;
  border-color: #363aff;
}

/* Checkbox Privacy */

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 4px;
  border: 1px solid #ffffff;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  cursor: pointer;
}

.privacy-checkbox input[type="checkbox"]:checked {
  background-image: url("../assets/images/privacy-logo-mark.svg");
}

.privacy-checkbox label {
  margin: 0;
  line-height: 1.5;
  cursor: pointer;
}

.submit-btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 40px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: white;
  color: #363aff;
}
#confirmation-message {
  display: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  font-family: "ClashDisplay", sans-serif;
  font-size: 18px;
}
