/* Centrer le conteneur sur la page */
.custom-registration-form-container {
    max-width: 500px;
    margin: 0 auto; /* Centre horizontalement */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Centre verticalement */
}

/* Centrer le logo */
.custom-registration-logo {
    text-align: center;
}

/* Centrer le formulaire */
.custom-registration-form-container #custom-registration-form {
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #83a697;
}

/* Style des champs de formulaire */
#custom-registration-form .forminator-ui#forminator-module-16976 .form-row {
    width: 100%;
}

#custom-registration-form .forminator-ui#forminator-module-16976 .form-row label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#custom-registration-form .forminator-ui#forminator-module-16976 .forminator-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-registration-form-container label.label_reg_consent {
    float: left;
}

.custom-registration-form-container .woocommerce-Button,
#custom-registration-form .custom-registration-form-container .forminator-button,
#custom-registration-form .forminator-ui#forminator-module-17196.forminator-design--flat .forminator-button-submit {
    width: 100%;
    background-color: #83a697;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.custom-registration-form-container .woocommerce-Button:hover,
#custom-registration-form .custom-registration-form-container .forminator-button:hover,
#custom-registration-form .forminator-ui#forminator-module-16976.forminator-design--flat .forminator-button-submit:hover {
    background-color: #83a697;
}

/* Style pour le message de succès */
.success-message {
    color: #83a697;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Hide the browser's default checkbox */
.checkbox-content {
    position: relative;
}

.checkbox-content .container {
    padding-left: 40px;
}

.checkbox-content .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkbox-content .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-content .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-content .container input:checked ~ .checkmark {
    background-color: #83a697;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkbox-content .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-content .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-content .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

