body{
    font-family: 'popins',sans-serif;
    background-color: #070320;
    color: white;
}
*{
    margin: 0;
}
.title{
    text-align: center;
    margin-bottom: 2%;

}
.under-title{
    text-align: center;
    margin-bottom: 100px;
}
.map-img{
display: block;
margin: auto;
width: 80%;

}
.divider-contact{
    height: 100%;
    
border-left: 1px solid white;
border-radius: 100px;

}
.contact-container{
    margin-top: 5%;
    height: 10%;
    width: 100%;
    display: flex;
    margin-right: 10%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5%;
}
.social-network-container{
    
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 16px;
    gap: 16px;
}
.title-network{
    color: white;
}
.social-network-container img{
    width: 2rem;
}
.tel-container{
    width: auto;
    
}
.tel-container a{
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: white;
}
.tel-container a img{
    width: 30px;

    
}
.adresse-container{
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
}
.adresse-container a img{
    width: 29px;
    
}

.adresse-container a{
    text-decoration: none;
    color: white;
}
.adress-btn{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.title-form-container{
    text-align: center;
    margin-bottom: 50px;
}
.divider-section-1-to-2{
    margin-top: 5%;
    border-bottom: 2px solid white;
    border-radius: 10px;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 5%;
}

.form-container {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2%;
}


.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px; 
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: 2px solid #e52e53;
}


.name-fields {
    display: flex;
    gap: 20px;
}

.name-fields .form-group {
    flex: 1; 
}


.form-group-submit {
    display: flex;
    justify-content: flex-end; 
    margin-top: 10px;
}

button[type="submit"] {
    background-color: #e52e53;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #c91c3f; 
}
@media (max-width: 600px) {
    .name-fields {
        flex-direction: column;
        gap: 0;
    }

    .form-group-submit {
        justify-content: center;
    }

    button[type="submit"] {
        width: 100%; 
    }
}
