.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.verify-page {}

/* 페이지 상단 */

.verify-header {
    margin-bottom: 34px;
}

.verify-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;

}

.verify-location span::before {
    content: ">";
    margin-right: 8px;
    color: #b7b9bf;
}

.verify-title {
    margin: 0;

}

.verify-description {
    margin: 10px 0 0;

}

/* 공통 안내 */

.verify-summary {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    padding: 24px 26px;

}

.verify-summary__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.verify-summary__content {
    min-width: 0;
}

.verify-summary__title {
    margin: 0;
}

.verify-summary__text {
    margin: 4px 0 0;
}

/* 공통 섹션 */

.verify-section {
    border: 1px solid #bababa;
    margin: 3rem 0 0;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 .3rem .3rem #0e0e0e17;
}



.verify-section__number {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;

}

.verify-section__content {
    min-width: 0;
}

.verify-section__title {
    margin: 0;

}

.verify-section__description {
    margin: 5px 0 0;

}

/* 원본대조 검증 박스 */

.verify-form-box__header {
    margin-bottom: 22px;
}

.verify-form-box__title {
    margin: 0;

}

.verify-form-box__description {
    margin: 6px 0 0;

}

/* 번호 유형 카드 */

.verify-type {
    display: flex;
    gap: 2rem;
    margin: 0 0 3rem;
    padding: 0;
    border: 0;
    min-width: 0;
}

.verify-type .btn {
    border-radius: 5px;
}

.verify-type__item {
    position: relative;
    min-width: 0;
    width: 100%;
    padding: 2rem;
    border: 3px solid #e2e5ec;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.verify-type__item:hover {
    border-color: #aeb9ee;
}

.verify-type__item.is-active {
    border-color: #8b7ed4;
    background: #f5f7ff;
}

.verify-type__head {
    display: flex;
    align-items: center;
}

.verify-type__select {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.verify-type__select input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.verify-type__radio {
    position: relative;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border: 2px solid #b7bbc5;
    border-radius: 50%;
    background: #fff;
    displaynone
}

.verify-type__item.is-active .verify-type__radio {
    border-color: #8b7ed4;
}

.verify-type__item.is-active .verify-type__radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    transform: translate(-50%, -50%);
}

.verify-type__select input:focus-visible+.verify-type__radio {
    outline: 3px solid rgba(82, 112, 250, 0.25);
    outline-offset: 3px;
}

.verify-type__label {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.verify-type__label strong {}

.verify-type__label small {
    margin-top: 3px;

}

.verify-type__item.is-active .verify-type__label strong {
    color: #5740d8;
}

/* 카드 내부 입력 폼 */

.verify-type__form {
    padding-top: 20px;
    transition: opacity 0.2s ease;
}

.verify-type__item:not(.is-active) .verify-type__form {
    position: relative;
    opacity: 0.45;
}

/* 비활성 입력 영역을 클릭해도 카드 클릭으로 처리 */
.verify-type__item:not(.is-active) .verify-type__form * {
    pointer-events: none;
}

.verify-label {
    display: block;
    margin-bottom: 8px;

}

.verify-label::before {
    content: "•";
    margin-right: 7px;
}

.verify-input-row {
    display: flex;
    gap: 10px;
    min-width: 0;
}

.verify-input {
    flex: 1;
    min-width: 0;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        background-color 0.2s;
}


.verify-input:focus,
.verify-code__input:focus {
    border-color: #c6c0e6;
    box-shadow: 0 0 0 3px rgba(82, 112, 250, 0.12);
}

.verify-input:disabled,
.verify-code__input:disabled {
    border-color: #dfe2e7;
    color: #989ba3;
    background: #eceef2;
    box-shadow: none;
    cursor: not-allowed;
}

.verify-search {
    flex: 0 0 100px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}



.verify-search:disabled {
    color: #999ca4;
    background: #d9dce2;
    cursor: not-allowed;
}

.verify-code {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.verify-code__input {
    width: 100%;
    min-width: 0;

    text-align: center;
    text-transform: uppercase;
    outline: none;
}

.verify-code__dash {
    flex: 0 0 auto;
    color: #9699a1;
    font-weight: 700;
}

.verify-example,
.verify-help {
    margin: 9px 0 0;

}

.verify-help {
    color: #61569e;
}

/* 결과 메시지 */

.verify-message {
    display: none;
    margin: 13px 0 0;
    padding: 12px 14px;
    border-radius: 8px;

}

.verify-message.is-error {
    display: block;
    border: 1px solid #f0caca;
    color: #a33434;
    background: #fff1f1;
}

.verify-message.is-success {
    display: block;
    border: 1px solid #bde2ce;
    color: #176743;
    background: #edf9f3;
}

/* 뷰어 안내 */
.vf-card {
    background: #c8c8c84a;
    padding: 3rem;
    margin: 3rem 0 0;
    border-radius: 1rem margin: 0 0 3rem;
}

.vf-tit-area {
    display: flex;
    gap: 1.5rem;
    align-items:center;
}

.vf-tit-area .vfimg {
    width: 50px;
}

.verify-viewer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 1rem;
}

.verify-viewer__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    flex-direction: row
}

.verify-viewer__content {
    min-width: 0;
}

.verify-viewer__title {
    display: block;
    margin-bottom: 3px;

}

.verify-viewer__text {
    margin: 0;

}



/* PDF 검증 */

.verify-program {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 2rem 0;
    padding-bottom: 3rem;
}

.verify-program__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.verify-program__content {
    min-width: 0;
}

.verify-program__title {
    display: block;
    margin-bottom: 4px;
}

.verify-program__text {
    margin: 0;
}

.verify-program__link {}

/* 바코드 */

.verify-info {
    margin: 3rem 0;
}

.verify-info__title {
    display: block;
    margin-bottom: 8px;
}

.verify-info__list {
    margin: 0;
}

.verify-info__list li+li {
    margin-top: 5px;
}

.verify-download {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8rem;

}

.verify-download__item {
    display: flex;
    flex-direction: column;
    min-height: 136px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.verify-download__item:hover {
    transform: translateY(-2px);
}

.verify-download__title {
    display: block;
    margin-bottom: 4px;

}

.verify-download__text {
    color: var(--gray);

}

.verify-download__action {
    margin-top: auto;
    padding-top: 13px;
    color: var(--blue);

}

/* 하단 */

.verify-footer {
    margin-top: 22px;
    padding: 19px;
    border-radius: 12px;
    color: #334057;
    background: #edf7ff;
    text-align: center;

    font-weight: 700;
}

.verify-page .verify-section {
    transition-delay: 0s !important;
    opacity: 1;
    transform: translateY(0);
}

.verify-notice {}

.vfimg-area {
    display: flex;
    flex-wrap:wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* 반응형 */
@media (max-width: 1200px) {
    .verify-type {
        flex-direction: column;
    }

    .verify-viewer {
        flex-direction: column;
    }

    .verify-type {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .verify-type {
        grid-template-columns: 1fr;
    }

    .vf-tit-area {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .verify-program,
    .verify-download {
        grid-template-columns: 1fr;
    }

    .qrstep-list {
        flex-wrap: wrap;
    }

    .qrstep-list li {}

}

@media (max-width: 850px) {
    .verify-page {}

    .verify-viewer {
        align-items: stretch;
        flex-direction: column;
    }

    .verify-viewer__buttons {
        flex-direction: column;
    }

    .verify-button {
        width: 100%;
    }
}

@media (max-width: 660px) {
    .qrstep-list {
        gap: 1rem !important
    }

.verify-section{padding:1rem;}
.qrstep-list li {
    Width: 100% !important;
}

.qrstep-list li::after {
    position: inherit !important;
    right: 0 !important;
    top: 0 !important;
    transform: 0 !important;
    rotate: 90deg; }
}

@media (max-width: 560px) {
    .verify-summary {
        padding: 20px;
    }

    .verify-form-box {}

    .verify-type__item {
        padding: 18px;
    }

    .verify-input-row {
        align-items: stretch;
        flex-direction: column;
    }

    .verify-search {
        flex-basis: 48px;
        width: 100%;
    }

    .verify-code {
        width: 100%;
        gap: 4px;
    }

    .verify-code__input {

        padding: 0 3px;

    }

    .verify-program__item {
        align-items: stretch;
        flex-direction: column;
    }

    .verify-program__link {
        width: 100%;
    }

}