/* style de classe du container */
.container {
    background: #08071d;
    display: flex;
    margin-left: 20px;
    margin-top: 80px;
    justify-content: center;
    align-items: center;
    background: url("bg.png") no-repeat center center/cover;
}

/* style du form de container */
.container form {
    width: 670px;
    height: 400px;
    display: flex;
    justify-content: center;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

/* style de la phrase h1 */
.container form h1 {
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    width: 500px;
    text-align: center;
    
}

/* style de form input */
.container form input {
    width: 290px;
    height: 40px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 15px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
}

/* color of  placeholder */
.container form input::placeholder {
    color: #ddd;
}

/* classes du formulaire de contact */
.container form #lastName,
.container form #mobile {
    margin-left: 20px;
}

/* style du titre du formulaire de contact */
.container form h4 {
    color: #fff;
    font-weight: 300;
    width: 600px;
    margin-top: 20px;
}

/* style de zone d'information personnelle */
.container form textarea {
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-weight: 200;
    font-size: 15px;
    padding: 10px;
    outline: none;
    min-width: 600px;
    max-width: 600px;
    min-height: 80px;
    max-height: 80px;
}

/* style du bouton */
.container form #button {
    border: none;
    background: #fff;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #333;
    width: 100px;
    padding: 0;
    margin-right: 500px;
    margin-bottom: 30px;
    transition: 0.3s;
}

/* hover du bouton */
.container form #button:hover {
    opacity: 0.7;
}

/* style d'informations personnelles */
.personalInfo {
    color: azure;
    justify-content: left;
    text-align: left;
    background-color: #08071d;
    margin-right: 50px;
    border-radius: 15px;
}

/* classe d'informations personnelles */
.info {
    margin-bottom: 30px;
    padding-left: 100px;
    padding-right: 100px;

}

/* class de google map */
.map {
    text-align: center;
}

/* creation de google map */
iframe {
    width: 70%;
    margin-top: 100px;
    border-radius: 50em;
}

/* icônes d'informations personnelles */
.material-symbols-outlined {
    vertical-align: middle;
    margin-left: 5px;

}

/* media all */
@media all and (max-width: 1100px) {
    .container {
        display: contents;

    }

    .personalInfo {

        padding: 3px;
        margin-right: 0px;
        justify-content: center;
        text-align: center;
        margin: 15px;
    }

    .info {
        margin-bottom: 10px;
        padding-left: 65px;
        padding-right: 65px;
    }

    .container form {
        width: 400px;
    }

    .container form h4 {

        margin-top: 10px;
        margin-left: 15px;
    }

    .container form textarea {
        min-width: 300px;
        max-width: 300px;
        min-height: 20px;
        max-height: 20px;
    }

    form {
        margin-left: auto;
        margin-right: auto;
    }

    .container form #button {

        margin-top: 5px;
        font-weight: 600;
        font-size: 12px;
        width: 60px;
        padding: 0;
        margin-right: 300px;
        margin-bottom: 8px;
    }

    .container form #lastName,
    .container form #mobile {
        margin-left: 0px;
    }





}