/*
 *         Mise en form du formulaire.
 */



 form {
    width: 70%;
    margin: auto;
    text-align: left;
    padding: 0 5%;
}

form button {
    float: left;
    width: 45%;
    margin: 0 2%;
    border-radius: 10px;
    border: 2px solid black;
    height: 30px;
    background: url();
    color: white;
    padding: 0 10px;
    cursor: pointer;
    font-size: .9em;
}

form button:hover {
    background: url(../Images/Bande2.png);
    box-shadow: -1px 5px 10px 5px rgba(0, 0, 0, 0.3) inset;
}


form div + div {
    margin: 15px 0;
}

form label {
    width: 30%;    
    display: inline-block;
    font-size: 1.0em;
}

form input, textarea, select {
    width: 69%;
    height: 25px;
    border: 2px solid black;
    border-radius: 10px;
    background: url();
    color: white;
    box-sizing: border-box;
    vertical-align: top;
    resize: vertical;
    padding: 15px 5%;
    font-family: serif;
    font-size: 0.8em;
}

form select {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 40px;   
}

form option {
    background-color: rgba(93,93,93,0.6);
    font-size: 1.0em;
}

form #radios {
    display: block;
    height: 70px;   
}

form #radio1, #radio2 {
    width: 40%;
    position: relative;
    right: -50%;
    top: -30px;
}

form #radio2 {
    margin: 5% 0;   
}

form .radio {
    height: 20px;
}

form input:focus, textarea:focus, select:focus {
    border-color: white;
}

form textarea {
    height: 120px;   
}