.contact-toast {
  position: fixed;
  top: 28px;
  right: -420px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  z-index: 999999;
  transition: right .35s ease;
  font-size: 14px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.contact-toast.show { right: 28px; }
.contact-toast.success { background: #16a34a; }
.contact-toast.error { background: #dc2626; }



/* ===============================
   CONTACT FORM – UNIFIED STYLE
   =============================== */

/* Όλα τα inputs & select */
#contactform-contact input[type="text"],
#contactform-contact input[type="email"],
#contactform-contact select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  font-family: inherit;
  color: #000;
  outline: none;
}

/* TEXTAREA – ΚΑΝΕ ΤΟ ΙΔΙΟ */
#contactform-contact textarea {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #000 !important;
  background: transparent !important;
  padding: 12px 0 8px 0;
  font-size: 16px;
  font-family: inherit;
  color: #000;
  outline: none;
  resize: none;          /* ❌ no resize */
  box-shadow: none;      /* ❌ no box */
  border-radius: 0;      /* ❌ no rounding */
  min-height: 90px;
}

/* Focus state */
#contactform-contact input:focus,
#contactform-contact textarea:focus,
#contactform-contact select:focus {
  border-bottom-color: #000;
}

/*!* Spacing όπως τα άλλα fields *!*/
/*#contactform-contact .contact-formfield {*/
/*  margin-bottom: 40px;*/
/*}*/


