/*=============== FORM CHALLANGS ===============*/
.form__challangs {
    background-color: var(--background);
    padding-block: 16.5rem 48px;
    min-height: 100vh;

    .form__challangs__container {
        display: flex;
        justify-content: center;
        align-items: center;

        .form__challangs__content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 57px;
            width: 100%;

            h2 {
                font-size: 32px;
                font-weight: 800;
                text-align: center;
                color: var(--dark);
            }

            .form {
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                box-shadow: 0px 25px 50px -12px #191C1D0D;
                background-color: #FFFFFF01;
                border-radius: 24px;
                padding: 24px 32px 48px 32px;
                width: 100%;
                max-width: 570px;
                gap: 34px;
                border: 1px solid #C1C8C226;

                .progres__bar {
                    position: relative;
                    width: 100%;
                    height: 8px;
                    background-color: #E7E8E980;
                    border-radius: 999px;

                    .progres__fill {
                        position: absolute;
                        top: 0;
                        left: 0;
                        height: 100%;
                        width: 50%;
                        background-color: var(--green);
                        border-radius: 999px;
                        transition: all 0.3s ease-in-out;
                    }
                }

                form {
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    flex-direction: column;
                    gap: 32px;
                    width: 100%;

                    .group__form {
                        display: flex;
                        justify-content: start;
                        align-items: start;
                        flex-direction: column;
                        gap: 8px;
                        width: 100%;

                        label {
                            font-size: 12px;
                            font-weight: var(--font-medium);
                            color: var(--dark);
                            text-transform: uppercase;
                        }

                        .input {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            background-color: #6666660F;
                            padding: 17px 16px;
                            border-radius: 8px;
                            gap: 16px;
                            width: 100%;

                            i {
                                font-size: 16px;
                                color: #666666;
                            }

                            input,
                            select {
                                background-color: transparent;
                                width: 100%;
                                height: 100%;
                                color: #666666;
                                font-size: 14px;
                                font-weight: var(--font-medium);
                                border: none;
                                outline: none;
                            }

                        }

                    }

                    button {
                        width: 100%;
                        height: 48px;
                        border-radius: 8px;
                        background-color: var(--yellow);
                        color: white;
                        font-size: 18px;
                        font-weight: var(--font-medium);
                        cursor: pointer;
                    }
                }
            }

            .benefits {
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                background-color: #F9F3E180;
                border-radius: 12px;
                padding: 32px;
                width: 100%;
                max-width: 570px;
                gap: 20px;
                border: 1px solid #D4AF37;

                h3 {
                    font-size: 20px;
                    font-weight: var(--font-medium);
                    color: var(--yellow);
                }

                ul {
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    flex-direction: column;
                    gap: 16px;
                    width: 50%;

                    li {
                        display: flex;
                        justify-content: start;
                        align-items: center;
                        gap: 12px;
                        font-size: 12px;
                        font-weight: var(--font-medium);
                        color: var(--dark);


                        i {
                            font-size: 20px;
                            color: var(--yellow);
                        }




                    }
                }
            }

        }

        .popup {
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            gap: 44px;
            max-width: 430px;
            width: 100%;
            border: 1px solid #C1C8C226;
            padding: 48px 32px;
            background-color: white;
            border-radius: 12px;

            .header__popup {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 9px;
                max-width: 365px;
                width: 100%;

                h3 {
                    font-size: 36px;
                    font-weight: var(--font-bold);
                    color: var(--dark);
                }

                p {
                    font-size: 14px;
                    font-weight: var(--font-regular);
                    color: var(--dark);
                }
            }

            .btns__popup {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 11px;
                max-width: 305px;
                width: 100%;

                .secondary__btn {
                    font-size: 14px;
                    font-weight: var(--font-regular);
                    color: #666666;
                    text-decoration: underline;
                    text-transform: uppercase;
                }

                .primery__btn {
                    width: 100%;
                    height: 44px;
                    border-radius: 8px;
                    background-color: var(--green);
                    color: white;
                    font-size: 16px;
                    font-weight: var(--font-medium);
                }
            }
        }

        .popup.active {
            display: flex;
        }
    }
}


/*=============== RESPONSIVE ===============*/
@media (max-width: 576px) {
    .form__challangs {
        padding-block: 10.5rem 48px;

        ul {
            width: 100% !important;
        }

        .popup {
            .header__popup {
                max-width: 100% !important;

                h3 {
                    font-size: 27px !important;
                }
            }
        }
    }
}