﻿@media (min-width:0) {
    .sliders {
        height: 55vh;
        background-image: var(--dynamic-image, none), var(--dynamic-gradient, none);
        background-repeat: no-repeat, no-repeat;
        background-position: bottom, bottom;
        background-size: contain, cover;
        background-blend-mode: multiply;
        padding: var(--padding-container);
        box-sizing: border-box;
        margin: calc(-1 * var(--padding-container));
    }

    #navigationBar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        margin-bottom: 40px;
    }

        #navigationBar .item {
            width: 25%;
            height: 6px;
            background: #f2f3f699;
            border-radius: 32px;
            position: relative;
            overflow: hidden;
        }

            #navigationBar .item::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 0;
                height: 100%;
                background: #fff;
            }

            #navigationBar .item.active::before {
                width: 100%;
                transition: 5s;
            }

    .slider {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: calc(100% - 20px);
    }

        .slider .title {
            color: #fff;
            text-align: center;
            font-size: 18px;
            font-weight: 800;
        }

        .slider p {
            font-weight: 370;
            color: #ffffffcc;
            width: 65%;
            text-align: center;
        }

        .slider .image {
            width: 150px;
            margin: auto;
            display: block;
            margin-top: 10px;
            transform: scale(0);
            opacity: 0;
        }

            .slider .image.animate {
                transform: scale(1);
                opacity: 1;
                transition: transform 0.6s ease, opacity 0.6s ease;
            }

    .fade-section {
        width: 100%;
        height: 10px;
        background: linear-gradient(0deg, #f2f3f6 0% 100%);
        box-shadow: 0 -12px 30px 40px #f2f3f6;
    }

    .card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: -16em auto 0;
        padding: 15px;
        border-radius: 16px;
        margin-bottom: 16px;
        box-shadow: 0 10px 40px #10111333;
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        background: rgb(255 255 255 / 60%);
        transition: background-color ease .5s;
    }

        .card > div {
            width: 100%;
        }

        .card b {
            font-weight: 800;
            font-size: 18px;
        }

        .card p {
            color: #74777C;
            font-weight: 370;
            width: 90%;
            margin: 1em auto;
            text-align: center;
        }

    .field {
        height: 52px;
        border: 1px solid #c9cbcf;
        background-color: #fff;
        border-radius: 12px;
        position: relative;
        margin-bottom: 17px;
        overflow: hidden;
        box-sizing: border-box;
    }

        .field input {
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            padding: 22px 10px 8px;
            box-sizing: border-box;
            position: relative;
            z-index: 1;
        }

        .field:has(input:focus) {
            border-color: #1159fc;
            background-color: #deedff;
        }

        .field .title {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            transition: .3s;
        }

        .field input:focus ~ span.title,
        .field input:not(:placeholder-shown) ~ span.title {
            top: 13px;
            font-size: 10px;
        }

        .field input:focus ~ span.title {
            color: var(--text-onback-low);
        }

        .field input:-webkit-autofill {
            -webkit-box-shadow: 0 0 0px 40rem #ffffff inset;
        }

            .field input:-webkit-autofill ~ span.title {
                z-index: 1;
            }

    .card input[type=submit] {
        width: 100%;
        height: 52px;
        border: none;
        font-weight: 370;
        font-size: 16px;
        color: #fff;
        cursor: default;
        opacity: .3;
        padding: 12px 24px;
        border-radius: 12px;
        background: #7f1408;
        transition: .3s;
    }

    .card input.enable {
        opacity: 1;
        cursor: pointer;
    }

    .card input.fade {
        cursor: progress;
        opacity: .3;
        pointer-events: none;
    }

    .links {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-top: 10px;
    }

        .links a {
            color: #1159FC;
        }

    .back {
        color: #000;
        display: block;
        text-align: center;
        margin-top: 10px;
    }

#captchaCanvas {
    max-width: 30%;
}
}

@media (min-width: 525px) {
}

@media (min-width: 768px) {
    .card {
        width: 90%;
        padding: 24px;
     }
}

@media (min-width:992px) {
}

@media (min-width:1200px) {
}

@media only screen and (max-width: 768px) and (min-width: 0) {
}