.content-form {
    margin-top: 80px;
    .container {
        h1 {
            font-weight: 500;
            font-size: 40px;
            text-align: center;
            max-width: 660px;
            margin: 0px;

            @media screen and (max-width:650px) {
                font-size: 32px;
            }
        }

        h2 {
            font-size: 30px;
            font-weight: 400;
            text-align: center;
            margin: 50px 0px 45px;

            @media screen and (max-width:650px) {
                font-size: 24px;
            }
        }

        .errorForm {
            color: #ff5757;
            font-size: 12px;
            position: absolute;
            bottom: -17px;
            left: 1px;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            width: 100%;
            max-width: 660px;

            .form-item {
                display: flex;
                flex-direction: column;
                gap: 3px;
                width: 100%;
                position: relative;

                label {
                    font-size: 18px;
                }

                select,
                input {
                    height: 40px;
                    border-radius: 7px;
                    background: var(--default-background-color);
                    border: 1px solid #D4D1D1;
                    font-size: 18px;
                    color: #fff;
                    padding: 0px 10px;

                    &::placeholder {
                        color: #D4D1D1;
                    }

                    &:disabled {
                        cursor: not-allowed;
                    }
                }
            }

            .form-group {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                gap: 15px;
                width: 100%;

                @media screen and (max-width:768px) {
                    flex-wrap: wrap;
                }

                &.voucher {
                    gap: 10px;
                }

                button {
                    height: 40px;
                    margin-top: 25px;
                    max-width: 250px;

                    @media screen and (max-width:768px) {
                        max-width: 100%;
                        margin-top: 10px;
                    }
                }

                .form-item {
                    width: 48%;
                    min-width: 200px;

                    &.voucher {
                        width: 100% !important;
                    }

                    @media screen and (max-width:768px) {
                        width: 100%;
                    }
                }
            }

            #nameShop {
                position: relative;
            }

            #my-input-container {
                display: inline-block;
                position: relative;
                overflow: hidden;
                font: 18px 'Poppins';
                width: 100%;
                padding: 1px;
            }

            #nameShop {
                font: inherit;
                overflow: hidden;
                color: #fff;
                width: 100%;
                border-radius: 7px;
                border: 1px solid #fff;
            }

            #my-suffix {
                position: absolute;
                color: #a6a6a6;
                padding-left: 5px;
                font: inherit;
                pointer-events: none;
                top: 50%;
                transform: translateY(-50%);
            }

            .file-input {
                border-radius: 7px;
                width: 100%;
                border: 1px solid #D4D1D1;
                height: 40px;
                display: flex;
                align-items: center;

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #d9d9d9;
                    color: #030404;
                    font-size: 14px;
                    height: 40px;
                    padding: 0px 10px;
                    border-radius: 7px;
                    min-width: 150px;
                }

                span {
                    font-size: 16px;
                    font-weight: 400;
                    padding: 0px 10px;
                    color: #fff;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }
            }

            button {
                margin-top: 30px;
                height: 45px;
                border-radius: 7px;
                max-width: 300px;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                background: var(--highlight-color);
                color: var(--default-font-color);
                border: none;
                font-size: 18px;

                &:hover {
                    background: var(--highlight-hover-color);
                    cursor: pointer;
                }

                &:disabled {
                    background: #d9d9d9;
                    cursor: not-allowed;
                }
            }

            .voucher-success {
                background: var(--green-highlight);

                &:hover {
                    background: var(--button-hover-color);
                }

            }
        }

        .info-payment {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            width: 100%;

            header {
                font-size: 32px;
                font-weight: 700;
                text-align: center;
                margin-top: 25px;
                margin-bottom: 10px;
            }
        }

        .box {
            max-width: 400px;
            border-radius: 17px 17px 0px 0px;
            background: var(--background-price-box);
            position: relative;
            transform-style: preserve-3d;

            &:after {
                background-image: url('../Images/shadow-2.webp');
                content: '';
                width: 120%;
                height: 50%;
                transform: translateZ(-1px);
                position: absolute;
                top: 20px;
                z-index: 2;
                background-position: center;
                filter: blur(50px);

                @media screen and (max-width:1080px) {
                    width: 100%;
                }

                @media screen and (max-width:800px) {
                    display: none;
                }
            }

            .top {
                position: relative;
                padding: 0px 25px 0px;
                background: var(--highlight-color);
                border-radius: 17px 17px 0px 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 3px;
                min-height: 170px;

                @media screen and (max-width:375px) {
                    min-height: 140px;
                    padding: 0px 10px;
                }

                div {
                    font-family: 'Gilroy', sans-serif;
                    font-weight: 400;
                    font-size: 20px;
                    text-align: right;

                    @media screen and (max-width:650px) {
                        font-size: 18px;
                    }

                    @media screen and (max-width:375px) {
                        font-size: 16px;
                    }

                    &:first-child {
                        margin-top: 15px;
                    }

                    &:nth-child(2) {
                        font-family: 'Gilroy', sans-serif;
                        font-weight: 700;
                        font-size: 102px;
                        line-height: 1;

                        @media screen and (max-width:650px) {
                            font-size: 60px;
                        }

                        @media screen and (max-width:375px) {
                            font-size: 48px;
                        }
                    }

                    &:last-child {
                        display: flex;
                        flex-direction: column;
                        font-family: 'Gilroy', sans-serif;
                        margin-top: -15px;

                        @media screen and (max-width:650px) {
                            margin-top: 5px;
                        }

                        strong {
                            font-weight: 700;
                            font-size: 36px;

                            @media screen and (max-width:650px) {
                                font-size: 24x;
                            }
                        }

                        span {
                            font-weight: 400;
                            font-size: 16px;
                        }

                    }
                }

                &.year {
                    display: flex;
                    flex-direction: column;

                    .content {
                        display: flex;
                        padding: 0px;
                        flex-direction: row;
                        align-items: center;
                        justify-content: center;
                        gap: 3px;

                        div {
                            &:last-child {
                                margin-top: -15px;
                            }
                        }
                    }

                    span {
                        font-size: 20px;
                        font-family: 'Gilroy', sans-serif;
                        font-weight: 400;
                    }
                }
            }

            .content {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 25px 35px;

                .item {
                    display: flex;
                    gap: 10px;
                    width: 100%;
                    font-family: 'Gilroy', sans-serif;
                    font-size: 20px;
                    font-weight: 400;
                    text-align: left;
                    padding: 25px 0px;
                    border-bottom: 0.8px solid rgba(231, 231, 231, 1);

                    &:nth-child(3) {
                        border-bottom: none;
                    }

                    img {
                        width: 25px;
                        height: 25px;
                    }
                }

                button {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    min-height: 48px;
                    width: 100%;
                    max-width: 270px;
                    background: var(--green-highlight);
                    color: var(--default-font-color);
                    font-weight: 700;

                    &:hover {
                        background: var(--button-hover-color);
                    }

                    &:disabled {
                        background: #d9d9d9;
                        cursor: not-allowed;
                    }

                    img {
                        width: 20px;
                        height: 20px;
                    }
                }
            }

            .info {
                position: absolute;
                max-width: 185px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                background: var(--green-highlight);
                border-radius: 6px;
                min-height: 35px;
                top: -32px;
                left: 34%;

                @media screen and (max-width:375px) {
                    left: 18%;
                }

                span {
                    font-family: 'Gilroy', sans-serif;
                    font-weight: 400;
                    font-size: 20px;
                    color: var(--default-font-color);
                    padding-right: 8px;
                    border-right: 1px solid #fff;
                    line-height: 1;
                }

                strong {
                    font-family: 'Gilroy', sans-serif;
                    font-weight: 700;
                    font-size: 20px;
                }
            }
        }
    }
}