/* Container card */
.apps86-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem 0 1.5rem;
  border-radius: 12px;
  /* background: #fff; */
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
  text-align: center;
  font-family: system-ui, sans-serif;
}

/* Logo */
.apps86-logo img {
  max-width: 180px !important;
  margin-bottom: 1rem;
}

/* Title */
.apps86-title {
  font-size: 1.25rem;
  /* margin-bottom: 1.5rem; */
  color: #79C4B5;
  font-weight: 600;
}

/* Fields */
#apps86-form-inscription .apps86-field {
  margin-bottom: 1rem;
  text-align: left;
}

#apps86-form-inscription label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #374151;
}

#apps86-form-inscription input[type="text"],
#apps86-form-inscription input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 12px; /* rond type pill */
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#apps86-form-inscription input:focus {
  outline: none;
  border-color: #79C4B5;
  box-shadow: 0 0 0 2px rgba(0,68,89,0.25);
}

.apps86-field input[type="checkbox"]{
  width: auto !important;
}

.apps86-field input[type="checkbox"]:focus{
  box-shadow: none !important;
  width: auto !important;
}

/* Bouton */
.apps86-btn-wrapper {
  margin-top: 1.2rem;
}

.apps86-btn {
  background: #F18A48 !important;
  color: #fff;
  padding: 0.7rem 1.6rem !important;
  border: none !important;
  border-radius: 9999px !important;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.1s;
}

.apps86-btn:hover {
  background: #F18A48 !important;
  color: white !important;
}

.apps86-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 138,172,0.3);
  color: white !important;
  background-color: #F18A48;
}

.apps86-btn:active {
  transform: scale(0.97);
}

/* Feedback */
/* .apps86-feedback {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.2em;
} */

.password-link{
  display: flex;
  justify-content: center;
  text-decoration: underline !important;
}