/* ===== Consult Page ===== */


.form-field {
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field-full {
    flex: 1;
    width: auto;
}


/* 인풋 + 버튼 그룹 */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-with-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-btn .form-input {
    flex: 1;
}

.input-timer-wrap {
    position: relative;
    flex: 1;
}

.input-timer-wrap .form-input {
    width: 100%;
    padding-right: 70px;
}

.timer {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.36px;
}

.btn-verify {
    width: 155px;
    height: 60px;
    background: #00B2B0;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.4px;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.btn-verify:hover {
    background: #0A5874;
}

.btn-verify:disabled {
    background: #F2F2F2;
    color: #999;
    cursor: default;
}

.btn-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 155px;
    height: 60px;
    background: #6E6E6E;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.4px;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.btn-check:hover {
    background: #111;
}

.btn-check:disabled {
    background: #F2F2F2;
    color: #999;
    cursor: default;
}

.btn-check.complete {
    background: #0075E2;
    color: #fff;
}

.btn-check.complete::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(/common/img/icon_check_w-444529076cb1c8883ad3c93db5c527e2.png) no-repeat center/contain;
}

/* 선택 옵션 박스 */
.product-box {
    background: #f8ffff;
    border: 1px solid #1488e8;
    border-radius: 20px;
    padding: 30px;
    width: 700px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.product-key {
    width: 80px;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    letter-spacing: -0.36px;
    line-height: 1.5;
}

.product-val {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.36px;
    line-height: 1.5;
}


/* ===== 모바일 ===== */
@media (max-width: 768px) {

    .form-field,
    .form-field-full {
        width: 100%;
    }

    .form-field {
        gap: 30px;
    }


    .product-box {
        width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

    .product-key,
    .product-val {
        font-size: 16px;
    }

    .product-key {
        width: 70px;
        font-weight: 700;
    }

    .btn-verify,
    .btn-check {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }

    .input-with-btn {
        gap: 10px;
        flex-direction: column;
    }

    .input-with-btn .form-input {
        flex-basis: initial;
    }

    .input-timer-wrap {
        flex-basis: initial;
        width: 100%;
    }

    .btn-check.complete::before {
        width: 17px;
        height: 17px;
    }

}