@media only screen and (min-width:1000px) and (max-width:1279px) {
    /* FOR-ALL */

    main.page-wrap {
        width: 100%;
        height: 100vh;
    }

    /* FOR-ALL */


    /* SIGN-IN-&-SIGN-UP-PAGES */

    .sign-in-wrap {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .sign-in-left {
        width: 50%;
        height: 100%;
        position: relative;

        h1 {
            font-size: 45px;
            font-family: "Anton SC", serif;
            text-transform: uppercase;
            position: absolute;
            top: 10%;
            left: 0;
            right: 0;
            color: #fff;
            text-align: center;
            margin: 0;
            text-shadow: 0px 0px 60px #ADFE0499;

            span {
                color: #ADFE04;
            }
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .sign-in-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 6rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 70%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        input.sign-in-right-number {
            width: 100%;
            height: 45px;
            border-radius: 10px;
            border: 1px solid #FFFFFF1F;
            background-color: #17012F;
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 0.05em;
            padding: 0px 10px 1px 70px;
            background-image: url(../images/sign-in/phone.svg);
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: center left 40px;

            &::placeholder {
                color: #fff;
            }
        }
    }

    .sign-in-right-numpad {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px auto;
        padding: 10px;
        border: 1px solid #FFFFFF14;
        border-radius: 20px;

        button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(248, 248, 248, 0.06);
            border: none;
            outline: none;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 20px;
            }

            &:nth-child(10) {
                font-size: 14px;
                width: 55px;
                text-align: center;
                border-radius: 40px;
                font-family: 'Sequel Sans Medium Head';
            }
        }
    }

    .sign-in-right-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        button,
        a {
            width: 100%;
            padding: 0.6rem 0;
            text-align: center;
            border: 1px solid #7D4AE4;
            border-radius: 30px;
            background: rgba(125, 74, 228, 0.08);
            color: #7D4AE4;
            font-size: 15px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        button {
            color: #fff;
            background-color: #7D4AE4;
        }
    }

    .sign-up-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 4rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 100%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sign-up-field {
            width: 100%;
            height: auto;
            position: relative;
            margin-bottom: 15px;

            label {
                position: absolute;
                left: 10px;
                top: -10px;
                color: rgba(248, 248, 248, 0.6);
                font-size: 12px;
                font-family: 'Sequel Sans Roman Head';
                background: #1e003e;
                padding: 0px 5px;
            }

            input[type="text"] {
                width: 100%;
                height: 45px;
                border: 1px solid #FFFFFF14;
                background: transparent;
                border-radius: 8px;
                padding-left: 15px;
                color: #fff;
                font-family: 'Sequel Sans Roman Head';
                font-size: 13px;

                &::placeholder {
                    color: #ddd;
                }
            }
        }
    }


    /* SIGN-IN-&-SIGN-UP-PAGES */
}

@media only screen and (min-width:912px) and (max-width:999px) {
    /* FOR-ALL */

    main.page-wrap {
        width: 100%;
        height: 100vh;
    }

    /* FOR-ALL */


    /* SIGN-IN-&-SIGN-UP-PAGES */

    .sign-in-wrap {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .sign-in-left {
        width: 50%;
        height: 100%;
        position: relative;

        h1 {
            font-size: 45px;
            font-family: "Anton SC", serif;
            text-transform: uppercase;
            position: absolute;
            top: 10%;
            left: 0;
            right: 0;
            color: #fff;
            text-align: center;
            margin: 0;
            text-shadow: 0px 0px 60px #ADFE0499;

            span {
                color: #ADFE04;
            }
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .sign-in-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 6rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 70%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        input.sign-in-right-number {
            width: 100%;
            height: 45px;
            border-radius: 10px;
            border: 1px solid #FFFFFF1F;
            background-color: #17012F;
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 0.05em;
            padding: 0px 10px 1px 70px;
            background-image: url(../images/sign-in/phone.svg);
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: center left 40px;

            &::placeholder {
                color: #fff;
            }
        }
    }

    .sign-in-right-numpad {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px auto;
        padding: 10px;
        border: 1px solid #FFFFFF14;
        border-radius: 20px;

        button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(248, 248, 248, 0.06);
            border: none;
            outline: none;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 20px;
            }

            &:nth-child(10) {
                font-size: 14px;
                width: 55px;
                text-align: center;
                border-radius: 40px;
                font-family: 'Sequel Sans Medium Head';
            }
        }
    }

    .sign-in-right-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        button,
        a {
            width: 100%;
            padding: 0.6rem 0;
            text-align: center;
            border: 1px solid #7D4AE4;
            border-radius: 30px;
            background: rgba(125, 74, 228, 0.08);
            color: #7D4AE4;
            font-size: 15px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        button {
            color: #fff;
            background-color: #7D4AE4;
        }
    }

    .sign-up-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 4rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 100%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sign-up-field {
            width: 100%;
            height: auto;
            position: relative;
            margin-bottom: 15px;

            label {
                position: absolute;
                left: 10px;
                top: -10px;
                color: rgba(248, 248, 248, 0.6);
                font-size: 12px;
                font-family: 'Sequel Sans Roman Head';
                background: #1e003e;
                padding: 0px 5px;
            }

            input[type="text"] {
                width: 100%;
                height: 45px;
                border: 1px solid #FFFFFF14;
                background: transparent;
                border-radius: 8px;
                padding-left: 15px;
                color: #fff;
                font-family: 'Sequel Sans Roman Head';
                font-size: 13px;

                &::placeholder {
                    color: #ddd;
                }
            }
        }
    }


    /* SIGN-IN-&-SIGN-UP-PAGES */
}

@media only screen and (min-width:800px) and (max-width:911px) {

    /* FOR-ALL */

    main.page-wrap {
        width: 100%;
        height: 100vh;
    }

    /* FOR-ALL */


    /* SIGN-IN-&-SIGN-UP-PAGES */

    .sign-in-wrap {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .sign-in-left {
        width: 50%;
        height: 100%;
        position: relative;

        h1 {
            font-size: 45px;
            font-family: "Anton SC", serif;
            text-transform: uppercase;
            position: absolute;
            top: 10%;
            left: 0;
            right: 0;
            color: #fff;
            text-align: center;
            margin: 0;
            text-shadow: 0px 0px 60px #ADFE0499;

            span {
                color: #ADFE04;
            }
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .sign-in-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 4rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 95%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        input.sign-in-right-number {
            width: 100%;
            height: 45px;
            border-radius: 10px;
            border: 1px solid #FFFFFF1F;
            background-color: #17012F;
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 0.05em;
            padding: 0px 10px 1.1px 55px;
            background-image: url(../images/sign-in/phone.svg);
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: center left 30px;

            &::placeholder {
                color: #fff;
            }
        }
    }

    .sign-in-right-numpad {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px auto;
        padding: 10px;
        border: 1px solid #FFFFFF14;
        border-radius: 20px;

        button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(248, 248, 248, 0.06);
            border: none;
            outline: none;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 20px;
            }

            &:nth-child(10) {
                font-size: 14px;
                width: 55px;
                text-align: center;
                border-radius: 40px;
                font-family: 'Sequel Sans Medium Head';
            }
        }
    }

    .sign-in-right-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        button,
        a {
            width: 100%;
            padding: 0.6rem 0;
            text-align: center;
            border: 1px solid #7D4AE4;
            border-radius: 30px;
            background: rgba(125, 74, 228, 0.08);
            color: #7D4AE4;
            font-size: 15px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        button {
            color: #fff;
            background-color: #7D4AE4;
        }
    }

    .sign-up-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 4rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 100%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sign-up-field {
            width: 100%;
            height: auto;
            position: relative;
            margin-bottom: 15px;

            label {
                position: absolute;
                left: 10px;
                top: -10px;
                color: rgba(248, 248, 248, 0.6);
                font-size: 12px;
                font-family: 'Sequel Sans Roman Head';
                background: #1e003e;
                padding: 0px 5px;
            }

            input[type="text"] {
                width: 100%;
                height: 45px;
                border: 1px solid #FFFFFF14;
                background: transparent;
                border-radius: 8px;
                padding-left: 15px;
                color: #fff;
                font-family: 'Sequel Sans Roman Head';
                font-size: 13px;

                &::placeholder {
                    color: #ddd;
                }
            }
        }
    }


    /* SIGN-IN-&-SIGN-UP-PAGES */
}

@media only screen and (min-width:768px) and (max-width:799px) {

    /* FOR-ALL */

    main.page-wrap {
        width: 100%;
        height: 100vh;
    }

    /* FOR-ALL */


    /* SIGN-IN-&-SIGN-UP-PAGES */

    .sign-in-wrap {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .sign-in-left {
        width: 50%;
        height: 100%;
        position: relative;

        h1 {
            font-size: 45px;
            font-family: "Anton SC", serif;
            text-transform: uppercase;
            position: absolute;
            top: 10%;
            left: 0;
            right: 0;
            color: #fff;
            text-align: center;
            margin: 0;
            text-shadow: 0px 0px 60px #ADFE0499;

            span {
                color: #ADFE04;
            }
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .sign-in-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 4rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 95%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        input.sign-in-right-number {
            width: 100%;
            height: 45px;
            border-radius: 10px;
            border: 1px solid #FFFFFF1F;
            background-color: #17012F;
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            letter-spacing: 0.05em;
            padding: 0px 10px 1.1px 55px;
            background-image: url(../images/sign-in/phone.svg);
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: center left 30px;

            &::placeholder {
                color: #fff;
            }
        }
    }

    .sign-in-right-numpad {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px auto;
        padding: 10px;
        border: 1px solid #FFFFFF14;
        border-radius: 20px;

        button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(248, 248, 248, 0.06);
            border: none;
            outline: none;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 20px;
            }

            &:nth-child(10) {
                font-size: 14px;
                width: 55px;
                text-align: center;
                border-radius: 40px;
                font-family: 'Sequel Sans Medium Head';
            }
        }
    }

    .sign-in-right-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        button,
        a {
            width: 100%;
            padding: 0.6rem 0;
            text-align: center;
            border: 1px solid #7D4AE4;
            border-radius: 30px;
            background: rgba(125, 74, 228, 0.08);
            color: #7D4AE4;
            font-size: 15px;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        button {
            color: #fff;
            background-color: #7D4AE4;
        }
    }

    .sign-up-right {
        width: 50%;
        height: 100%;
        background-color: #1E003E;
        position: relative;
        padding: 3rem 4.5rem 0rem 4.5rem;

        h2 {
            font-size: 22px;
            font-family: "Anton SC", serif;
            color: #fff;
            text-transform: uppercase;
            position: absolute;
            top: 0%;
            left: 0;
            right: 0;
            text-align: center;
            width: fit-content;
            background: linear-gradient(180deg, #45297E 0%, #7D4AE4 100%);
            display: block;
            padding: 0.6rem 4rem;
            margin: auto;
            border-radius: 0px 0px 20px 20px;
        }

        form {
            width: 100%;
            height: 100%;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sign-up-field {
            width: 100%;
            height: auto;
            position: relative;
            margin-bottom: 15px;

            label {
                position: absolute;
                left: 10px;
                top: -10px;
                color: rgba(248, 248, 248, 0.6);
                font-size: 12px;
                font-family: 'Sequel Sans Roman Head';
                background: #1e003e;
                padding: 0px 5px;
            }

            input[type="text"] {
                width: 100%;
                height: 45px;
                border: 1px solid #FFFFFF14;
                background: transparent;
                border-radius: 8px;
                padding-left: 15px;
                color: #fff;
                font-family: 'Sequel Sans Roman Head';
                font-size: 13px;

                &::placeholder {
                    color: #ddd;
                }
            }
        }
    }


    /* SIGN-IN-&-SIGN-UP-PAGES */
}