/* global.css */
body {
    background-color: #fef2df;
    font-family: 'Comfortaa', cursive;
  }

  .font_color_navbar{
    background-color: #fef2df !important;   
    }

    .logo_fidelyne {
        font-family: 'Pacifico', cursive;
        font-weight: bold;
        font-size: 30px;
        
        color: #1f2a30 !important;
    }

    .text-fidelyne-dark{

        color: #1f2a30 !important;
      }

      .bg-blanc-doux {
        background-color: #FAF9F6 !important;
    }

    input.form-control.is-invalid,
textarea.form-control.is-invalid,
select.form-control.is-invalid {
    background-color: #fceeee !important; /* rouge très doux */
}

input.bg-blanc-doux,
textarea.bg-blanc-doux,
select.bg-blanc-doux {
    background-color: #FAF9F6 !important;
}

.hr-creme_orange {
    height: 2px; /* épaisseur du trait */
    background-color: #fee9c3; /* remplace par ton orange "crème" */
    width: 100%; /* ou 50% si tu veux un trait plus court */
    border: none;
  }



  .sidebar-expanded {
    width: 250px;
    transition: all 0.3s ease;
}

.sidebar-collapsed {
    width: 80px !important;
}

/* floute le contenu de l’élément */
.text-flou {
    filter: blur(4px);
    -webkit-filter: blur(4px);
  }
  
  /* facultatif : supprime le flou au survol */
  /* .text-flou:hover {
    filter: none;
    -webkit-filter: none;
  } */