:root{
    --pttc:#16989e;
    --pttc-dark:#11767b;
    --page:#eef3f7;
    --line:#d8e1e8;
    --text:#1f2937;
}
*{box-sizing:border-box}
body{
    margin:0;
    background:var(--page);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
}
.site-header{
    background:#fff;
    border-bottom:1px solid #e7ebef;
}
.site-header-image{
    display:block;
    width:100%;
    max-width:800px;
    height:auto;
    margin:0 auto;
}
.top-nav{
    padding:17px 0;
    background:#414b58;
    color:#fff;
}
.top-nav a{
    color:#fff;
    text-decoration:none;
}
.lookup-panel,
.result-card{
    background:#fff;
    border:1px solid var(--pttc);
    box-shadow:0 8px 25px rgba(22,152,158,.10);
}
.lookup-title,
.result-heading{
    padding:13px 18px;
    background:var(--pttc);
    color:#fff;
    font-size:22px;
}
.search-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 318px minmax(0,1fr);
    gap:20px;
    align-items:stretch;
}
.search-box{
    min-width:0;
    padding:22px;
    border:1px solid var(--line);
    border-radius:7px;
    background:#fff;
}
.search-box h4{
    margin:0 0 22px;
    font-size:19px;
}
.shared-recaptcha-column{
    display:flex;
    align-items:center;
    justify-content:center;
}
.shared-recaptcha-box{
    width:100%;
    padding:16px 7px;
    text-align:center;
    background:#f7fbfb;
    border:1px solid var(--pttc);
    border-radius:8px;
    box-shadow:0 4px 14px rgba(22,152,158,.14);
}
.recaptcha-title{
    margin-bottom:11px;
    color:var(--pttc-dark);
    font-weight:700;
}
.recaptcha-scale-wrapper{
    display:flex;
    justify-content:center;
    min-height:64px;
}
.btn-pttc{
    background:var(--pttc);
    border-color:var(--pttc);
    color:#fff;
}
.btn-pttc:hover,
.btn-pttc:focus{
    background:var(--pttc-dark);
    border-color:var(--pttc-dark);
    color:#fff;
}
.result-table th{
    width:18%;
    white-space:nowrap;
    background:#f5f8f9;
}
.result-table td{
    width:32%;
}
.fixed-info{
    background:#eefafa!important;
    color:#125f63;
    font-family:Arial,Helvetica,sans-serif!important;
    font-weight:400!important;
}
.fixed-info strong{
    font-family:Arial,Helvetica,sans-serif!important;
    font-weight:700!important;
}
.site-footer{
    margin-top:38px;
    padding:18px;
    text-align:center;
    background:#414b58;
    color:#fff;
}
@media(max-width:1100px){
    .search-layout{
        grid-template-columns:1fr;
    }
    .search-box-name{order:1}
    .shared-recaptcha-column{order:2}
    .search-box-personal-id{order:3}
    .shared-recaptcha-box{
        width:auto;
        min-width:318px;
    }
}
@media(max-width:420px){
    .shared-recaptcha-box{
        width:100%;
        min-width:0;
        padding:13px 2px 2px;
        overflow:hidden;
    }
    .recaptcha-scale-wrapper{
        height:63px;
    }
    #shared-recaptcha{
        transform:scale(.82);
        transform-origin:top center;
    }
    .lookup-title{
        font-size:18px;
    }
}
@media(max-width:768px){
    .result-table th,
    .result-table td{
        display:block;
        width:100%;
    }
    .fixed-info{
        display:table-cell!important;
        width:auto!important;
    }
}
@media print{
    .no-print,
    .top-nav,
    .site-footer{
        display:none!important;
    }
    body{background:#fff}
    .result-card{box-shadow:none}
}