.errorPage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.errorPage>h1{
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
    color:var(--familleColor);
}

.errorPage>p{
    font-size: 24px;
    margin-bottom: 20px;
}

#codeSalon{
    border-bottom: 1px solid gray;
}

#codeSalon:focus{
    outline: 0;
}

.newCode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.errorPage>form>input{
    width: 200px;
    text-align: center;
    font-size: 20px;
}

.btn-codeSalon, .btn-back{
    min-width: 150px;
    min-height: 45px;
    color:var(--mainColor);
    border: 3px solid var(--mainColor);
    text-transform: capitalize;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s;
    margin-top: 10px;
    padding: 0 5px;
}

.btn-codeSalon:hover, .btn-back:hover{
    background-color: var(--hoverColor);
}

.row{
    margin-right: 0 !important;
    margin-left: 0 !important;
}