/* Styles gï¿½nï¿½raux */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    margin: 40px auto;
}

.container-form{
    padding: 20px;
}

.header {
    margin-bottom: 20px;
    text-align: center;
}

.logo {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
}

h1 {
    color: #333;
    margin: 0;
}

.subtitle {
    color: #555;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Styles pour les groupes de champs */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
}

.btn-submit {
    display: flex;
    justify-content: center;
}

.btn-submit button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-submit button i {
    margin-right: 10px;
}

.btn-submit button:hover {
    background-color: #0056b3;
}

/* Styles pour le popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Masquer le popup par dï¿½faut */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    margin: 0;
    font-size: 20px;
}

.popup-content p {
    margin: 10px 0;
    font-size: 16px;
}

.popup-content .btn-close {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.popup-content .btn-close:hover {
    background: #0056b3;
}

/* Styles pour la responsivitï¿½ */
@media (max-width: 768px) {
    form {
        flex-direction: column; /* Mettre chaque champ sur une ligne */
    }

    .btn-submit {
        width: 100%;
    }
}
