.form_container {
    width: 500px;
    margin: 50px auto;
    background: #fff;
    box-shadow: var(--box-shadow-light);
    border-radius: var(--border-radius);
    padding: 45px 40px;
    @media (max-width: 700px) {
        width: calc(100% - 50px);
        padding: 20px 30px;
        margin-block: 20px;
    }
    h1, h2 {
        font-size: 32px;
        font-family: "VTB Group Demi Bold", sans-serif;
        @media (max-width: 700px) {
            text-align: center;
            font-size: 24px;
        }
    }
    h1 {
        margin-bottom: 15px;
    }
    h2 {
        margin-bottom: 44px;
        @media (max-width: 700px) {
            margin-bottom: 25px;
        }
    }
    p {
        font-size: 16px;
        color: var(--secondary-text);
        margin-bottom: 44px;
        @media (max-width: 700px) {
            text-align: center;
            margin-block: 10px;
        }
    }
    .input {
        label {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            @media (max-width: 700px) {
                margin-bottom: 15px;
                font-size: 14px;
            }
            > span {
                margin-bottom: 19px;
                font-family: "VTB Group Demi Bold", sans-serif;
                font-size: 16px;
                color: var(--secondary-text);
                @media (max-width: 700px) {
                    margin-bottom: 10px;
                    font-size: 14px;
                }
            }
            input:not([type=range]), select {
                padding: 10px 20px;
                border: 1px solid var(--secondary-text);
                border-radius: var(--border-radius);
                font-size: 16px;
                outline: none;
                @media (max-width: 700px) {
                    font-size: 12px;
                }
                &:focus {
                    border-color: var(--primary-blue);
                }
            }
            input {
                font-family: "VTB Group Demi Bold", sans-serif;
                @media (max-width: 700px) {
                    font-family: "VTB Group Book", sans-serif;
                }
            }
            select {
                font-family: "VTB Group Book", sans-serif;
            }
            .detail {
                margin-top: 5px;
                font-size: .85em;
            }
            .range {
                display: flex;
                flex-direction: column;
                input[type="range"] {
                    -webkit-appearance: none;
                    appearance: none;
                    width: calc(100% - 10px);
                    background: transparent;
                    --thumb-position: 50%;
                    --fill-color: var(--hover-text);
                    --track-color: var(--placeholder-gray);
                    align-self: center;
                }
                input[type="range"]::-webkit-slider-runnable-track {
                    background: linear-gradient(to right,
                        var(--fill-color) 0%,
                        var(--fill-color) var(--thumb-position),
                        var(--track-color) var(--thumb-position),
                        var(--track-color) 100%
                    );
                    border-radius: 4px;
                    height: 4px;
                }
                input[type="range"]::-webkit-slider-thumb {
                    -webkit-appearance: none;
                    background: #fff;
                    border: 4px solid var(--hover-text);
                    border-radius: 50%;
                    width: 25px;
                    height: 25px;
                    cursor: pointer;
                    transform: translateY(calc(-50% + 2px));
                }

                input[type="range"]::-moz-range-track {
                    background: linear-gradient(to right,
                        var(--fill-color) 0%,
                        var(--fill-color) var(--thumb-position),
                        var(--track-color) var(--thumb-position),
                        var(--track-color) 100%
                    );
                    border-radius: 4px;
                    height: 4px;
                }
                input[type="range"]::-moz-range-thumb {
                    background: #fff;
                    border: 4px solid var(--hover-text);
                    border-radius: 50%;
                    width: 25px;
                    height: 25px;
                    cursor: pointer;
                    transform: translateY(calc(-50% + 2px));
                }
                .detail {
                    display: flex;
                    justify-content: space-between;
                    span {
                        font-size: 12px;
                    }
                }
            }
            .select {
                background: #fff;
                border: 1px solid var(--secondary-text);
                border-radius: var(--border-radius);
                padding: 10px 20px;
                font-size: 16px;
                font-family: "VTB Group Book", sans-serif;
                color: var(--primary-text);
                position: relative;
                z-index: 1;
                transition: all .5s, z-index 0s .5s;
                &.expanded {
                    z-index: 3;
                    transition: all .5s, z-index 0s;
                    .options {
                        border: 1px solid var(--secondary-text);
                        overflow: auto;
                    }
                    .selected {
                        .icon {
                            img {
                                transform: rotate(180deg);
                            }
                        }
                    }
                }
                .selected {
                    display: flex;
                    justify-content: space-between;
                    .icon {
                        display: flex;
                        align-items: center;
                        img {
                            transition: all .5s;
                        }
                    }
                }
                .options {
                    overflow: clip;
                    position: absolute;
                    top: calc(100% + 1px);
                    transition: all .5s;
                    display: flex;
                    flex-direction: column;
                    background: #fff;
                    z-index: 1;
                    left: 0;
                    width: 100%;
                    max-height: 200px;
                    height: 0;
                    border-radius: var(--border-radius);
                    border: 1px solid transparent;
                    .option {
                        padding: 10px 20px;
                        font-size: 16px;
                        font-family: "VTB Group Book", sans-serif;
                        transition: all .5s;
                        cursor: pointer;
                        &:hover {
                            color: var(--hover-text);
                        }
                    }
                }
            }
        }
        .checkbox {
            display: flex;
            align-items: center;
            gap: 15px;
            &:has(:checked) {
                .checkmark {
                    &::before {
                        border-color: var(--hover-text);
                    }
                    &::after {
                        opacity: 1;
                    }
                }
            }
            .checkmark {
                width: 20px;
                height: 20px;
                position: relative;
                &::before {
                    content: "";
                    display: block;
                    width: 20px;
                    height: 20px;
                    border: 1px solid var(--secondary-text);
                    border-radius: var(--border-radius);
                    box-sizing: border-box;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: 1;
                    transition: all .5s;
                }
                &::after {
                    content: "";
                    display: block;
                    width: 14px;
                    height: 14px;
                    opacity: 0;
                    position: absolute;
                    inset: 0;
                    margin: auto;
                    z-index: 2;
                    border-radius: var(--border-radius);
                    background: var(--hover-text);
                    transition: all .5s;
                }
            }
            input {
                display: none;
            }
            span {
                font-size: 16px;
                font-family: "VTB Group Light", sans-serif;
                @media (max-width: 700px) {
                    font-size: 12px;
                }
            }

        }
    }
    .button {
        display: block;
        padding: 15px;
        width: 100%;
        font-size: 16px;
        border-radius: var(--border-radius);
        font-family: "VTB Group Book", sans-serif;
        @media (max-width: 700px) {
            font-size: 12px;
        }
    }
}