.vk_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    color: var(--text-color);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .vk_modal.fade-in {
    display: block;
    opacity: 1;
}

.vk_modal.fade-out {
    opacity: 0;
}

.vk_modal .vk_modal_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    min-width: 850px;
    max-width: 95%;
    color: var(--text-color);
  }

.vk_modal_formWrapper{
    width: 100%;
    margin: auto;
    margin-bottom: 5%;
    align-items: center;
    justify-content: center;
    padding: 4%;
    background-color: var(--vk_body_color);
    color: var(--text-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.vk_modal_form{
    width: 100%;
    text-align: center;
}

.vk_modal_form_label {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    text-align: left;
  }

  .vk_modal_form_input{
    width: 100%;
    margin: auto;
    padding: 6px;
    background-color: var(--inputBackgroundColor);
    border: 0;
    border-radius: 4px;
    border: 1px solid var(--inputBackgroundColor);
    color: var(--text-color);
    font-size: 1em;
    display: block;
  }

  .vk_modal_form_input:focus{
    outline: none;
    background-color: var(--inputBackgroundColor);
  }

  .vk_modal_form_fieldsGroup {
    margin-top: 5px; /* Uniformise l'espacement entre tous les blocs */
    margin-bottom: 5px;
  }

.vk_modal_txt_error{
    margin: auto;
    margin-top: 5%;
    text-align: center;
    color: red;
    min-height: 25px; /* Hauteur minimale pour éviter les changements de taille */
  }

.vk_modal_div_barConfirmationInput {
    display: inline-block;
    margin-top: 0px;
    height: 10px;
    width: 47%;
    max-width: 47%;
}

.vk_modal_barConfirmationInput {
    height: 100%;
    width: 100%;
    background-color: var(--body-color);
    transition: width 0.3s;
}

.vk_modal_confirmationText {
  display: inline-block;
  width: 53%;
  text-align: center;
  font-size: 14px;
}

.vk_modal_closeButton {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: rgb(231, 24, 24);
    z-index: 10;
}

.vk_modal_closeButton:hover {
    color: red;
}
