#MainContent:has(.certification-verification-block) {
    padding-bottom: 0;
}

.certification-verification-block {
    position: relative;
    .halo-block-header {
        .title {
            text-transform: capitalize;
            letter-spacing: 0;
        }
    }
    .container {
        padding: 0 24px;
        position: unset;
    }
}

.check-certificate_verification {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    
    .form-message {
        margin-bottom: 8px;
    }

    .form-actions,
    .form-field + .form-field {
        margin-top: 30px;
    }

    .form-field.form-field-capcha {
        display: flex;
        row-gap: 0;
        column-gap: 16px;
        flex-wrap: wrap;

        .form-label {
            flex: 0 0 100%;
        }
        .form-input {
            flex: 1;
        }
        .capcha-info-wrapper {
            display: flex;
            gap: 8px;
            align-items: center;
            .captcha-box {
                display: block;
                flex: 0 0 320px;
                padding: 14px;
                height: 55px;
                background: linear-gradient(90deg, #FFFFFF 0%, #D4D4D4 55.29%, #FFFFFF 100%);
                border-radius: 8px;
                border: 1px solid #000000;
                font-weight: 400;
                font-size: 36px;
                letter-spacing: 0.76px;
                vertical-align: middle;
                text-align: center;
                color: #018899;
                user-select: none;
            }
            .button-return {
                width: 24px;
                height: 24px;
                background: transparent;
                border: 1px solid #000000;
                padding-inline: 1px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 4px;
                .icon-return {
                    width: 13px;
                }
            }
        }
    }

    .form-field {
        .form-label {
            color: #121212;
            font-size: 14px;
            font-weight: 700;
            .note-label {
                font-weight: 400;
            }
        }
        .form-input {
            min-height: 56px;
            border-radius: 8px;
            font-size: 14px;
        }
    }

    @media screen and (max-width: 768px) {
        padding: 24px 16px;

        .form-actions,
        .form-field + .form-field {
            margin-top: 16px;
        }
        .form-field.form-field-capcha {
            display: flex;
            row-gap: 8px;
            flex-wrap: wrap;
            .form-label {
                margin-bottom: 0;
            }

            .form-input {
                flex: 0 0 100%;
            }
            .capcha-info-wrapper {
                flex: 0 0 100%;
                .captcha-box {
                    flex: 1;
                }
            }
        }
    }
}

.result-certificate_verification {
    max-width: 780px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;

    .result-group + .result-group {
        margin-top: 24px;
    }

    .verify {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        .verify--info {
            line-height: 1.5;

            .verify--label {
                display: block;
                width: 100%;
                font-weight: 400;
                font-size: 16px;
                color: #818181;
            }
            .verify--code {
                display: block;
                width: 100%;
                color: #112C4C;
                font-weight: 700;
                font-size: 30px;
                text-transform: uppercase;
            }
        }
    }

    .verify--details {
        display: flex;
        flex-direction: column;
        gap: 16px;
        .detail-item {
            display: flex;
            list-style: none;
            padding-bottom: 12px;
            border-bottom: 1px solid #E6E6E6;
            color: #000000;
            span {
                display: inline-block;
                font-weight: 600;
                font-size: 14px;
                line-height: 1.5;
                letter-spacing: 0;
            }
            .detail-label {
                width: 120px;
                margin-right: 30px;
                font-weight: 400;
                font-size: 14px;
                line-height: 1.5;
            }
            .detail-value {
                flex: 0 0 calc(100% - 150px);
                video {
                    width: 100%;
                    height: auto;
                    max-height: 500px;
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        padding: 24px 16px;

        .result-group + .result-group {
            margin-top: 16px;
        }
    }
}

.check-certificate_verification,
.result-certificate_verification {
    .form-actions {
        .button {
            border: none;
            padding: 11px 24px;
            font-size: 16px;
            line-height: 1.5;
            border: 1px solid #bc984c;

            &:hover, &:active, &:focus {
                background-color: #121212;
                border: 1px solid #bc984c;
                color: #bc984c;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .result-certificate_verification {
        .form-actions {
            .button {
                font-size: 13px;
            }
        }
    }
}