/* only small desktops */
/* tablets */
@media screen and (min-width: 768px) and (max-width: 1190px) {
    .mini {
        flex: 0.4;
    }
}

/* mobile or only mobile */
@media screen and (min-width: 530px) and (max-width: 767px) {
    .mini {
        flex: 0.1;
    }

    .logo,
    header {
        height: 12vh;
        width: auto;
    }

    .titre {
        font-size: 1.2rem;
    }

    select,
    input {
        font-size: 1.2rem;
    }
}

@media screen and (max-width:530px) {
    .mini {
        flex: 0;
    }

    nav a{
        padding: 0.8rem 0rem;
    }

    select,
    input, .bouton {
        font-size: 1rem;
        padding: 0.5rem;
        margin: 0.5rem;
    }

    .logo,
    header {
        height: 10vh;
        width: auto;
    }

    .titre,button {
        font-size: 1rem;
    }

    form {
        width: 95% !important;
    }
    .oeil {
        position: absolute;
        right: 1rem;
        margin-top:1rem;
    }
}

@media screen and (max-width:370px) {

    select,
    input, .bouton, label {
        font-size: 0.8em;
    }
}