.identification {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.connexion {
	padding-bottom: 70px;
}

.loginForm {
	width: 100%;
	max-width: 350px;
    margin: auto;
}

.loginForm p {
    font-size: 15px;
    margin-bottom: 15px;
}

.loginForm .erreur {
	color: red;
    font-size: 13px;
    margin-bottom: 15px;
}

.loginForm .field {
	margin-bottom: 15px;
}

.loginForm .field input, .loginForm .field select {
	position: relative;
    width: 100%;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    font-weight: inherit;
    color: #929292;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    height: 50px;
}

.forgotPassword a {
	font-size: 13px;
    color: #929292;
}

.loginForm .btnSubmit {
	padding: 7px 46px;
    margin-top: 30px;
    cursor: pointer;
}

.loginForm .confirmation p {
	line-height: 25px;
}

@media (min-width: 992px){
    .identification {
        flex-direction: row;
        justify-content: center;
        gap: unset;
    }

    .identification .bloc_inscription {
        flex: 1;
    }

    .identification .bloc_connexion {
        flex: 1;
    }
}