body {
    margin: 0;
    font-family: 'Cairo', sans-serif !important;
    background: url('hichem.jpg') no-repeat center center fixed;
    background-size: contain;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000 !important;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.content {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom:0rem;
}

p {
    font-size: 1.5rem;
    margin-bottom: 0rem
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.newsletter-form input {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}
.newsletter-form label {
     margin-bottom: 5px;
     text-align: start;
   }

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background-color: #009eea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: #0178b2;
}

/* Style de la modale */
.modal-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    max-width: 400px;
    margin: auto;
}

/* Le fond de la modale */
.modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* Le titre de la modale */
.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* Le corps de la modale */
.modal-body p {
    font-size: 1rem;
    color: #555;
}

/* Le bouton de fermeture */
.btn-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    cursor: pointer;
}

/* Style pour le bouton dans la modale */
.modal-footer {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.modal-footer .btn-primary {
    background-color: #009eea;
    border-radius: 5px;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-footer .btn-primary:hover {
    background-color: #0178b2;
}

/* Le fond sombre en dehors de la modale */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Ajout de la transparence et centrage de la modale */
.modal.fade {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.fade.show {
    opacity: 1;
}

/* Ajouter de l'espace au bouton après la modale */
#closeModalBtn {
    margin-top: 10px;
}
