.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


#proform {
  align-items: flex-end;
  width: 100%;
  border-radius: var(--x100);
  padding: var(--x200);
  display: flex;
  flex-direction: column;
  gap: var(--x200);
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  margin: 10% 0;
}

#proform div {
    display: flex;
    gap: var(--x100);
}

#proform div img {
    width: 40px;
}

/* Formulaire */
#proform form {
  border-radius: var(--x100);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--x100);
  justify-content: space-between;
  
}

.form-group {
  width: calc(25% - var(--x75));
  border-radius: var(--x50);
}

#proform input::placeholder,
#proform select::placeholder,
#proform textarea::placeholder {
  color: #999999;
}

/* Champs de formulaire */
input,
select,
textarea {
  width: 100%;
  padding: var(--x50);
  border: 1px solid #e0e0e0;
  font-size: 14px;
  border-radius: var(--x50);
  box-sizing: border-box;
  background-color: #f9f9fb;
  font-family: sans-serif;
  border: 1px solid #2b292f;
  height: 40px;
}

.message {
  width: 100%;
}

.message textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.checkbox-group input[type="checkbox"] {
  width: 10px;
  margin-top: -3px;
  margin-right: -10px;
}

.checkbox-group a {
  color:#a48adb;
  text-decoration: none;
}
.checkbox-group a:hover {
  text-decoration: underline;
}

#proform label {
  display: block;
  font-weight: 500;
  margin-bottom: 7px;
  color: white;
  font-size: 13px;
}

/* Bouton d'envoi */
#proform button {
  display: inline-block;
  padding: var(--x50) var(--x100);
  border-radius: var(--x800);
  background-color: white;
  color: var(--purple-dark);
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s linear;
  /* Pour occuper toute la ligne si besoin */
}
#proform button:hover {
  background-color: #8362C9;
  color: white;
}



@media screen and (max-width: 1000px) {
  #proform form {
    gap: var(--x75);
  }
  
  #proform {

    margin: 0 auto 8% auto ;
  }
  
  .form-group {
    width: 100%;
  }
  #proform button {
    margin-top: var(--x100);
  }
}
