.ncForm {
        width: 100%;
    }

    .ncFieldct {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 0.2em;
    }

        .ncFieldct label {
            width: 100%;
            font-size: 0.9em;
            margin-bottom: 0em;
            color: #ffffff;
        }

    .ncField {
        width: 100%;
        padding: 0em;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 0.9em;
        transition: all 0.2s ease-in-out;
    }
.ncSendZone {
    width: 100%; /* Occupe toute la largeur */
    text-align: center; /* Centre le contenu à l'intérieur */
    margin: 0 auto; /* Assure le centrage */
}
.kbn-form {
    border-radius: 4px;
    display: inline-block; /* S'assure qu'il reste de taille ajustée */

    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1em;
    color: var(--ast-global-color-8); /* Couleur du texte */
    background-color: var(--ast-global-color-5); /* Fond blanc */
    padding: 10px 20px;
    border: 1px solid var(--ast-border-color); /* Bordure par défaut */
border-color: var(--ast-global-color-0);
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.kbn-form-button:hover {
    background-color: var(--ast-global-color-2); /* Fond orange au survol */
    color: var(--ast-global-color-5); /* Texte blanc au survol */
    border-color: var(--ast-global-color-2); /* Bordure orange au survol */
}
        .ncField input, .ncField select {
            width: 100%;
            border: none;
            background-color: white;
            color: #000000;
        }

/*        .ncField:hover {
            border: 1px solid #555;
        } 
*/
    .ncField textarea:focus {
        outline: none;
    }

        .ncField input:focus, .ncField select:focus {
            outline: none;
            /*box-shadow: 0 0 0 2px rgba(85, 85, 85, 0.1);*/
        }

        .ncField .k-invalid {
            border: 1px solid red;
        }



        .ncField input, .ncField select {
            width: 100%;
        }
         
        .ncField .k-invalid {
            border: 1px solid red;
        }
    .ncpopoutf {
    position: fixed;
    display: flex;

    justify-content: center;
    align-items: center;
  top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Remplit la hauteur de la fenêtre */
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5); /* Ajoute un fond semi-transparent derrière la popup */
    }

    .ncpopf {

    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
    max-height: 90vh; /* Limite la hauteur totale de la popup pour éviter qu'elle dépasse de l'écran */
    }

.ncpopf p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Ajustements pour les tablettes en mode portrait */
@media screen and (max-width: 768px) {
  .ncpopf {
    width: 90%; /* Réduire la largeur à 90% de l'écran */
  }
}

/* Ajustements pour les petits écrans (mobiles) */
@media screen and (max-width: 480px) {
  .ncpopf {
    width: 95%; /* Occuper presque toute la largeur de l'écran */
    padding: 10px; /* Réduire le padding pour les petits écrans */
  }
}