width: 100%;
}.ncFieldct {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Alignement vertical en haut */
    margin-bottom: 1em;
}.ncFieldct label {
    width: 100%;
    font-size: 0.9em;
    margin-bottom: 0.5em;
    color: #555;
    text-align: left; /* Alignement du texte à gauche */
}.ncField {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9em;
    transition: all 0.2s ease-in-out;
}.ncSendZone {
    width: 100%; /* Le bouton occupe toute la largeur */
    text-align: left; /* Alignement du bouton à gauche */
}.kbn-form {
    text-decoration: none;
}.ncField input,.ncField select {
    width: 100%;
    border: none;
    background-color: transparent;
    color: #555;
}.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 {
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #666666;
    color: #aaaaaa;
    opacity:.8;
    filter: alpha(opacity=50);
}.ncpopf {
    width: 300px;
    height: 200px;
    position: absolute;
    color: #000000;
    background-color: #ffffff;
    top: 50%;
    z-index: 10000;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    padding-top: 60px;
    left: 50%;
    margin-top: -100px;
    margin-left: -150px;
}

/* Styles spécifiques pour les cases à cocher */.ncFieldct.tpboolean {
    display: flex;
    align-items: flex-start; /* Alignement vertical en haut */
}.ncFieldct.tpboolean label {
    order: 2;
    margin-left: 10px;
    width: auto;
}.ncFieldct.tpboolean.ncField {
    order: 1;
    width: auto;
}.ncFieldct.tpboolean input[type='checkbox'] {
    margin-right: 10px;
}