h2 {
	margin: 0;
}

/* le menu */
.nav-access {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;    
	padding: 0;
}
.nav-access a {
	position: absolute;
	display: block;
	padding: 1em;
	white-space: nowrap;
	color: white;
	background-color: black;
	opacity: 0;
}
.nav-access a:focus {
	opacity: 1;
	z-index: 1;
}

/********************** Le formulaire de la forme *****************************/

fieldset {
    margin: 2em 0;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0.5em;
}

.field {
    padding: 1em 0;
    display: flex;
}
.field label {
    width: 30%;
}
.field .value {
    width: 70%;
}
.field input {
    width: 100%;
}

.field + .field {
    border-top: 1px solid rgba(0,0,0,0.2);
}

.field select {
    width: 100%;
    padding: 0.5em 1em;
    font-size: 1.6rem;
    color: #333;
    border-radius: 0.5em;
    background-color: #fff;
}

.field-textarea {
    width: 100%;
    padding: 0.5em 1em;
    font-size: 1.6rem;
    color: #333;
    display: inline-block;
    border-radius: 0.5em;
    resize: none;
}

.toolbar {
    border-radius: 0.5em;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 1em 2em;
    text-align: center;
}

.button {
    padding: 1em 2em;
    color: white;
    background-color: #DD5735;
	border: 2px solid #DD5735;
	border-radius: 0.5em;
	cursor: pointer;
}

.button:hover {
    color: #DD5735;
    background-color: white;
}
