
/* ==========================================================
   MYJAT — Membership Verification Page
   Clean / Modern / Glass UI
========================================================== */

.myjat-verification-page {
    width: min(100%, 1000px);
    margin: 35px auto;
    padding: clamp(22px, 4vw, 42px);
    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--myjat-radius-1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.myjat-verification-header {
    margin-bottom: 28px;
    text-align: center;
}

.myjat-verification-header h2 {
    margin: 0 0 10px;
    color: #7b2d26;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 800;
}

.myjat-verification-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* ==========================================================
   Verification Form
========================================================== */

.myjat-verification-form {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    max-width: 700px;
}

.myjat-verification-input {
    flex: 1 1 300px;
    min-width: 0;
    max-width: none;

    padding: 14px 16px;
    box-sizing: border-box;

    color: #333;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: var(--myjat-radius-1);

    font: inherit;
    font-size: 16px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.myjat-verification-input::placeholder {
    color: #999;
}

.myjat-verification-input:focus {
    outline: none;
    border-color: #c65a11;
    box-shadow: 0 0 0 4px rgba(198, 90, 17, 0.12);
}

.myjat-verification-button {
    flex: 0 0 auto;
    padding: 14px 28px;

    color: #fff;
    background: linear-gradient(135deg, #c65a11, #9f3f0d);
    border: 0;
    border-radius: var(--myjat-radius-1);

    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;

    box-shadow: 0 6px 14px rgba(159, 63, 13, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.myjat-verification-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 9px 18px rgba(159, 63, 13, 0.28);
}

.myjat-verification-button:active {
    transform: translateY(0);
}

/* ==========================================================
   Result Card
========================================================== */

.myjat-verification-card {
    margin-top: 32px;
    padding: clamp(20px, 4vw, 32px);

    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--myjat-radius-1);
    box-sizing: border-box;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.myjat-verification-success {
    border: 1px solid #b9dabe;
    box-shadow:
        0 0 0 4px rgba(39, 115, 38, 0.05),
        0 10px 28px rgba(39, 115, 38, 0.1);
}

.myjat-verification-error {
    text-align: center;
    border: 1px solid #e4b6b0;
    background: #fff7f6;
    box-shadow: 0 8px 22px rgba(164, 55, 43, 0.08);
}

.myjat-verification-result-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px;

    color: #267326;
    font-size: clamp(23px, 3vw, 30px);
    line-height: 1.3;
}

.myjat-verification-error h3 {
    margin: 0 0 8px;
    color: #a4372b;
    font-size: 24px;
}

.myjat-verification-error p {
    margin: 0;
    color: #7b514c;
}

/* ==========================================================
   Member Information
========================================================== */

.myjat-member-result {
    display: grid;
    grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.myjat-verification-photo-wrap {
    text-align: center;
}

.myjat-verification-photo {
    display: block;
    width: 100%;
    max-width: 180px;
    max-height: 220px;
    margin: 0 auto;

    object-fit: cover;
    padding: 6px;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--myjat-radius-1);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.myjat-member-details {
    min-width: 0;
}

.myjat-member-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;

    color: #444;
    border-bottom: 1px solid #eeeeee;
    line-height: 1.6;
}

.myjat-member-detail-row:first-child {
    padding-top: 0;
}

.myjat-member-detail-row:last-child {
    border-bottom: 0;
}

.myjat-member-detail-label {
    min-width: 125px;
    color: #777;
    font-weight: 600;
}

.myjat-member-detail-value {
    color: #222;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.myjat-member-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;

    color: #267326;
    background: #e8f5e9;
    border: 1px solid #b9dabe;
    border-radius: var(--myjat-radius-1);

    font-size: 13px;
    font-weight: 700;
}

