html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sarabun', sans-serif;
}

.sarabun-thin {
    font-family: "Sarabun", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.sarabun-extralight {
    font-family: "Sarabun", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.sarabun-light {
    font-family: "Sarabun", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.sarabun-regular {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.sarabun-medium {
    font-family: "Sarabun", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.sarabun-semibold {
    font-family: "Sarabun", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.sarabun-bold {
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.sarabun-extrabold {
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.sarabun-thin-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.sarabun-extralight-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.sarabun-light-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.sarabun-regular-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.sarabun-medium-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.sarabun-semibold-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.sarabun-bold-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.sarabun-extrabold-italic {
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    font-style: italic;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* CLASSE STANDARD */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.backgroundCharcoal {
    background-image: url(./images/abstract-flowing-background-shades-blue.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.background-glass {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bouttonDownload {
    background-color: #274684;
    border-color: #FFFFFF;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    margin: 0 10px;
}

.bouttonDownload:hover {
    scale: 1.1;
}

.pulsing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.bouttonDivert {
    background-color: #274684;
    border-color: #FFFFFF;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    margin: 0 10px;
}

.backgroundContainer {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0px 5px cyan;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.backgroundContainerCarouselAccueil {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}


.backgroundContainerCarouselAccueil::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.backgroundContainerCarouselAccueil {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


.backgroundContainerCarouselAccueil img {
    opacity: 1;
    filter: brightness(100%);
}


.backgroundContainerSimple {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.backgroundContainerSimple::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.backgroundContainerSimple img {
    opacity: 1;
    filter: brightness(100%);
}

.backgroundContainerSimple {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.backgroundContainerSimple p,
.backgroundContainerSimple h1,
.backgroundContainerSimple h2,
.backgroundContainerSimple h3 {
    color: white;
    font-weight: bold;
}

.shadowCyan {
    box-shadow: 0 0px 5px cyan;
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    overflow: hidden;
}

.feature-image {
    max-width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
    margin-left: 20px;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 1rem;
}

.backgroundFooter {
    background-color: #212529;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* AFFICHAGE APPLICATION */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.icon-card {
    text-align: center;
    margin-bottom: 20px;
}

.icon-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
}

.image-modal {
    max-width: 300px !important;
    height: auto !important;
}

.lienApp {
    color: white !important;
}

.lienApp.active {
    color: black !important;
    background-color: #f8f9fa !important;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* RESPONSIVE */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* Par défaut (ordinateurs) */
.logoHeader {
    width: 75px;
    height: auto;
}

.logoHeaderZichat {
    width: 300px;
    height: auto;
}

.logoZichatAccueil {
    width: 300px;
    height: auto;
}

.videoAccueil {
    width: 850px;
    height: auto;
}

.logoDownload {
    width: 70px;
    height: auto;
    margin-top: 10px;
}

.logoFooter {
    width: 200px;
    height: auto;
}


@media (min-width: 768px) and (max-width: 991px) {
    .logoHeaderZichat {
        width: 250px;
        height: auto;
    }

    .logoZichatAccueil {
        width: 250px;
        height: auto;
    }

    .videoAccueil {
        width: 700px;
        height: auto;
    }

    .logoDownload {
        width: 90px;
        height: auto;
        margin-top: 10px;
        margin-right: 20px;
    }
}

/* Pour les téléphones (jusqu'à 767px) */
@media (max-width: 767px) {
    .logoHeaderZichat {
        width: 200px;
        height: auto;
    }

    .logoZichatAccueil {
        width: 200px;
        height: auto;
    }

    .videoAccueil {
        width: 400px;
        height: auto;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-box .feature-image {
        margin-bottom: 15px;
    }

    .feature-box .feature-content {
        margin-left: 0;
    }

    .logoDownload {
        display: none;
    }
}

.image-accueil {
    width: 220px;
    height: auto;
}



.container-element {
    display: flex;
    justify-content: space-between;
    margin: 1%;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .element {
        width: 98%;
    }
}

.container-tran {
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5) !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.container-tran::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}


.editIcon {
    background-image: url(./media/icone/edit_free.png);
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    min-width: 40px;
    min-height: 40px;
}

.deleteIcon {
    background-image: url(./media/icone/trash_free.png);
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    min-width: 40px;
    min-height: 40px;
}

.logo-newsletter {
    width: 150px;
    height: auto;
}

.modal-dialog {
    max-height: 90vh;
    margin: 5vh auto;
}

.modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 15px #00ffff;
    border-radius: 0;
}

.modal-body {
    max-height: calc(90vh - 120px);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-body img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid white;
    border-radius: 5px;
}

.image-70,
.image-69 {
    perspective: 1000px;
    width: 150px !important;
    height: 150px !important;
    position: relative;
}

.image-70,
.image-69 {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.image-69 {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    object-fit: cover;
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
}

.button-01 {
    appearance: none;
    background: #fff;
    border-width: 0;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-01:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #004a86;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.button-01:hover {
    color: #fff;
}

.button-01:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-01:after {
    background-color: #004a86;
}

.button-01 span {
    z-index: 1;
    position: relative;
}



.button-02 {
    appearance: none;
    background: #fff;
    border-width: 0;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-02:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #e74c3c;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.button-02:hover {
    color: #fff;
}

.button-02:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.button-02:after {
    background-color: #e74c3c;
}

.button-02 span {
    z-index: 1;
    position: relative;
}







.content-modif-profile {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.form-group-modif-profile {
    margin-bottom: 15px;
}

.form-group-modif-profile label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group-modif-profile input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.form-group-modif-profile input:focus {
    border-color: #007bff;
    outline: none;
}

.form-group-modif-profile small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #ccc;
}

.valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 5px #28a745;
}

.invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 5px #dc3545;
}

.form-group-modif-profile input {
    transition: border-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-modif-profile {
        padding: 15px;
    }

    .form-group-modif-profile input {
        padding: 8px;
        font-size: 14px;
    }

}

.profil-admin-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.profil-admin-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.profil-admin-image {
    text-align: center;
    margin-bottom: 20px;
}

.profil-admin-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #004a86;
    object-fit: cover;
}

.profil-admin-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profil-admin-info li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.profil-admin-info li:last-child {
    border-bottom: none;
}

.profil-admin-info strong {
    color: #fff;
}

.profil-admin-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.profil-admin-error,
.profil-admin-warning {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
}

.profil-admin-error {
    background-color: #ff6b6b;
    color: #fff;
}

.profil-admin-warning {
    background-color: #f1c40f;
    color: #000;
}

@media (max-width: 768px) {
    .profil-admin-container {
        margin: 20px;
        padding: 15px;
    }

    .profil-admin-image img {
        width: 120px;
        height: 120px;
    }

    .profil-admin-info li {
        font-size: 14px;
    }

    .profil-admin-actions {
        flex-direction: column;
        gap: 10px;
    }
}

.custom-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.custom-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.custom-card-body {
    margin-bottom: 10px;
}

.custom-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.custom-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.custom-card-footer {
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 1200px) {
    .custom-card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .custom-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .custom-card-container {
        grid-template-columns: 1fr;
    }
}

/* Conteneur principal de la modale */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Conteneur de la boîte de dialogue */
.news-modal-dialog {
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    /* Limite la hauteur à 90% de la fenêtre */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Contenu de la modale */
.news-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Prend toute la hauteur disponible */
}

/* En-tête de la modale */
.news-modal-header {
    flex-shrink: 0;
    padding: 15px;
    border-bottom: 1px solid #444;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.news-modal-close {
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
}

.news-modal-close:hover {
    color: #007bff;
}

.news-modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    text-align: center;
    color: #fff;
}

.news-modal-image,
.news-modal-video {
    max-height: 50vh;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.news-modal-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.news-modal-footer {
    flex-shrink: 0;
    padding: 15px;

    border-top: 1px solid #444;
    text-align: right;
}

.form-modif-admin-field input {
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-left: none;
    border-right: none;
    width: 100%;
    color: white;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.form-modif-admin-field input::placeholder {
    color: white;
}

.form-modif-admin-field label {
    color: #fff;
}

.form-modif-admin-field select {
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-left: none;
    border-right: none;
    width: 100%;
    color: white;
    padding: 5px 10px;
    margin-bottom: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    cursor: pointer;
}

.form-modif-admin-field select option {
    color: #000;
}

.form-modif-admin-field input:focus,
.form-modif-admin-field select:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}


.login-logo-zi-chat {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.ajout-news {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
}

.ajout-news-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
}

.ajout-news-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.ajout-news-label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}

.ajout-news-input,
.ajout-news-file-input,
.ajout-news-select,
.ajout-news-textarea {
    padding: 10px;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    border-left: none;
    border-right: none;
    background-color: rgba(0, 0, 0, 0.55);
    font-size: 1em;
    transition: border-color 0.3s;
    color: #fff;
}

.ajout-news-input:focus,
.ajout-news-file-input:focus,
.ajout-news-select:focus,
.ajout-news-textarea:focus {
    border-color: #66afe9;
    outline: none;
}

.ajout-news-textarea {
    resize: vertical;
    min-height: 100px;
}

.ajout-news-hidden {
    display: none;
}

.ajout-news-button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .ajout-news-background-glass {
        margin: 20px;
        padding: 20px;
    }

    .ajout-news-button-group {
        flex-direction: column;
    }

    .ajout-news-button {
        width: 100%;
        margin-bottom: 10px;
    }

    .ajout-news-button:last-child {
        margin-bottom: 0;
    }
}

.nav-link.active {
    color: #007bff !important;
}

.form-login-utilisateur {
    margin: auto;
    width: 100%;
    max-width: 500px;
    margin-top: 50px;
    padding: 30px;
    color: #fff;
}

.logo-zi-chat-login {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 50px;
}


.form-login-field input {
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-left: none;
    border-right: none;
    width: 100%;
    color: white;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.form-login-field input::placeholder {
    color: white;
}

.form-login-field label {
    color: #fff;
}

.form-login-field input:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
}

.link-forgot-password {
    color: #ccc;
    text-decoration: underline;
    cursor: pointer;
}

.link-forgot-password:hover {
    color: #007bff;
}

.verification-code-container {
    margin: auto;
    width: 100%;
    max-width: 500px;
    margin-top: 50px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.verification-code-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 50px;
}

.content-mdp-oublier {
    margin: auto;
    width: 100%;
    max-width: 500px;
    margin-top: 50px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.logo-mdp-oublier{
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 50px;
}