/* ==========================================================================
   TFA Entry Form — centré à l'écran
   ========================================================================== */
.content-page-default.custom_tfa .breadcrumbs{
    display:none;
}
.content-page-default {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    margin: 11% auto 0;
    display: block;
}


.tfa-entry-form {
  width: 100%;
  margin: 0 auto;
  padding: 40px 35px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tfa-entry-form .form-item {
  margin-bottom: 24px;
  text-align: left;
}

.tfa-entry-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #1f1f1f;
}

.tfa-entry-form input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  font-size: 18px;
  letter-spacing: 4px;
  text-align: center;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tfa-entry-form input[type="text"]:focus {
  outline: none;
  border-color: #008f70;
  box-shadow: 0 0 0 3px rgba(0, 143, 112, 0.15);
}

.tfa-entry-form .description {
  margin-top: 8px;
  font-size: 13px;
  color: #777777;
  text-align: center;
}

.tfa-entry-form input[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 14px 0;
  background-color: #008f70;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tfa-entry-form input[type="submit"]:hover {
  background-color: #007a5f;
}

/* Responsive */
@media (max-width: 480px) {
  .tfa-entry-form {
    padding: 30px 22px;
    max-width: 90%;
  }
}