/* ===========================
   MyPassport Smart Finder v2.0
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#eef4ef;
    padding:40px 15px;
}

.container{

    max-width:980px;

    margin:auto;

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.logo{

    width:135px;

    display:block;

    margin:0 auto 12px;

}

h1{
    text-align:center;
    color:#0b2d6b;
    font-size:46px;
    font-weight:700;
    margin:6px 0 6px;
    line-height:1.2;
}

.subtitle{

    text-align:center;

    color:#666;

    font-size:22px;

    margin-bottom:35px;

}

.search-title{

    font-size:22px;

    color:#2e7d32;

    font-weight:bold;

    margin-bottom:10px;

}

.search-box{

    display:flex;

    gap:12px;

    margin-bottom:35px;

}

input{

    flex:1;

    height:62px;

    border:2px solid #2e7d32;

    border-radius:15px;

    padding:0 20px;

    font-size:22px;

    outline:none;

    transition:.3s;

}

input:focus{

    box-shadow:0 0 0 5px rgba(46,125,50,.15);

}

button{

    width:70px;

    border:none;

    border-radius:15px;

    background:#0b2d6b;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    transition:.25s;

}

button:hover{

    background:#123b8d;

    transform:translateY(-2px);

}

.result{

    margin-top:20px;

    background:#fff;

    border-radius:20px;

    border:1px solid #e5e5e5;

    padding:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    animation:fade .3s;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(8px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.info-card h2{

    color:#0b2d6b;

    margin-bottom:25px;

    font-size:34px;

}

.info-row{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid #ececec;

}

.info-row:last-child{

border:none;

}

.icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#e8f5e9;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.label{

    color:#777;

    font-size:16px;

}

.value{

    font-size:24px;

    font-weight:bold;

    color:#111;

    margin-top:4px;

}

.status{

    color:#2e7d32;

}

@media(max-width:768px){

.container{

padding:25px;

}

h1{

font-size:32px;

}

.subtitle{

font-size:18px;

}

.search-box{

flex-direction:column;

}

button{

width:100%;

height:60px;

}

input{

font-size:18px;

height:60px;

}

.value{

font-size:20px;

}

.info-card h2{

font-size:28px;

}

}
