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

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

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

            h2 {
                font-size: 32px;
                font-weight: 800;
                color: #333333;
            }

            .form {
                display: flex;
                justify-content: start;
                align-items: start;
                flex-direction: column;
                background-color: #FFFFFF;
                border-radius: 24px;
                padding: 48px 64px;
                width: 100%;
                max-width: 970px;
                gap: 34px;
                border: 1px solid #C1C8C226;

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


                    .row__form {
                        display: flex;
                        gap: 20px;
                        width: 100%;

                        @media (max-width: 600px) {
                            flex-direction: column;
                        }
                    }

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

                        label {
                            font-size: 14px;
                            font-weight: 600;
                            color: #444;
                            text-transform: capitalize;

                            span {
                                color: #D4AF37;
                            }
                        }

                        .input {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            background-color: #FFFFFF;
                            padding: 12px 16px;
                            border-radius: 8px;
                            border: 1px solid #dddddd;
                            gap: 12px;
                            width: 100%;
                            transition: all 0.3s ease-in-out;

                            input,
                            select {
                                background-color: transparent;
                                width: 100%;
                                height: 100%;
                                color: #868E96;
                                font-size: 16px;
                                font-weight: 400;
                                border: none;
                                outline: none;

                                &::placeholder {
                                    color: #868E96;
                                }
                            }

                            select {
                                cursor: pointer;
                            }

                            &:focus-within {
                                border: 1px solid #D4AF37;
                            }
                        }


                        .radio__group {
                            display: flex;
                            flex-wrap: wrap;
                            gap: 35px;
                            padding: 10px 0;

                            label {
                                display: flex;
                                align-items: center;
                                gap: 8px;
                                font-weight: 400;
                                cursor: pointer;
                                text-transform: none;

                                input[type="radio"] {
                                    width: 18px;
                                    height: 18px;
                                }
                            }
                        }

                        textarea {
                            width: 100%;
                            background-color: #FFFFFF;
                            padding: 15px;
                            border-radius: 8px;
                            border: 1px solid #E0E0E0;
                            outline: none;
                            resize: none;
                            height: 120px;
                            transition: border 0.3s ease-in-out;

                            &:focus {
                                border: 1px solid #D4AF37;
                            }
                        }
                    }

                    button {
                        width: 100%;
                        height: 54px;
                        border-radius: 8px;
                        background-color: #D4AF37;
                        color: white;
                        border: none;
                        font-size: 18px;
                        font-weight: 500;
                        cursor: pointer;
                        transition: background 0.3s;
                        margin-top: 10px;

                        &:hover {
                            background-color: #c09d2f;
                        }
                    }
                }
            }
        }
    }
}

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

        .form__free__trial__container {
            .form__free__trial__content {
                h2 {
                    font-size: 28px;
                }

                .form {
                    padding: 25px 15px;
                }
            }
        }
    }
}