* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial;
}

.container {
    flex: 1;
    width: 100%;
    margin: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.registration-form {
    display: flex;
    flex-direction: column;
}

.registration-form h2 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #FF6233;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #FFBD59;
}

footer {
    background-color: #000; /* Couleur de fond noire */
    color: #fff; /* Couleur du texte blanche */
    padding: 20px;
    text-align: center;
    width: 100%; /* S'étend sur toute la largeur */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5); /* Ajoute une ombre pour le contraste */
    z-index: 1000; /* Assure que le footer est au-dessus des autres éléments */
    margin: 0;
    position: relative;
    bottom: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-block {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-block p {
    text-align: justify;
    padding-left: 20px;
}

.footer-block h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-block img {
    margin-top: 80px;
}

#liens a {
    color: white; /* Couleur des liens du footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block p, .footer-block a, .footer-block form, .footer-block .social-icons {
    margin: 10px 0;
}

.footer-block form input[type="email"] {
    padding: 10px;
    width: calc(100% - 22px);
    margin-bottom: 10px;
}

.footer-block form button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
}

.social-icons a i {
    width: 35px;
    height: 35px;
    margin: 0 5px;
    color: #FF6233;
}

.footer-block .social-icons a {
    font-size: 16px;
    height: 45px;
    width: 45px;
    display: inline-block;
    text-align: center;
    line-height: 43px;
    border-radius: 5px;
    border: 2px solid #222222;
    margin: 30px 5px 0 0;
    transition: all 0.3s ease;
}

.footer-container .social-icons a:hover {
    border-color: #FFBD59;
    background-color: #FFBD59;
}

.footer-divider {
    border-top: 1px solid #fff;
    margin: 20px 0;
}

.footer-bottom p{
    text-align: center;
    margin-top: 10px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
