/* Adaptive */

/* Smartphones ----------- */

@media (min-width: 0px) and (max-width: 480px) {
    body {
        font-size: 11px;
    }

    .screen_auth {
        height: auto;
        display: flex;
        flex-flow: column-reverse nowrap
    }

    .auth__content,
    .auth__form {
        width: 100%;
        padding: 100px 20px 20px 20px;
        height: 100vh;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }

    header {
        padding: 20px;
    }

    .auth__content__btns {
        flex-flow: column nowrap;
    }

    .btn {
        padding: 12px 15px;
        margin-bottom: 10px;
    }

    .auth__form__header-wrapper {
        text-align: center;
    }

    .auth__steps {
        display: none;
    }

    .auth__form__header {
        margin-bottom: 30px;
    }

    .auth__content__image {
        height: auto;
        margin-bottom: 30px;
    }

    .auth__content__image img {
        position: static;
        width: 100%;
        height: auto;
    }
}

/* iPads ----------- */

@media (min-width: 480.1px) and (max-width: 1024px) {
    body {
        font-size: 18px;
    }

    .screen_auth {
        height: auto;
        display: flex;
        flex-flow: column-reverse nowrap
    }

    .auth__content,
    .auth__form {
        width: 100%;
        padding: 100px 60px 60px 60px;
        height: 100vh;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }

    header {
        padding: 20px 60px;
    }

    .btn {
        margin-bottom: 10px;
    }

    .auth__form__header-wrapper {
        text-align: center;
    }

    .auth__next .btn {
        width: 70%;
        margin: 40px auto;
    }

    .auth__form__header {
        margin-bottom: 30px;
    }

    .auth__content__image {
        height: auto;
        margin-bottom: 30px;
    }

    .auth__content__image img {
        position: static;
        width: 100%;
        height: auto;
    }
}

/* Desktops and laptops ----------- */

@media (min-width: 1024.1px) and (max-width: 1367px) {
    body {
        font-size: 11px;
    }
}

@media (min-width: 1367.1px) and (max-width: 1920px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 1920.1px) and (max-width: 2144px) {
    body {
        font-size: 14px;
    }
}

/* Large screens ----------- */

@media (min-width: 2144px) {
    body {
        font-size: 14px;
    }
}