/* ==========================================
   GLOBAL
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f7f9f8;
    font-family:"Be Vietnam Pro",sans-serif;
    color:#333;
    font-size:15px;
    line-height:1.6;
}

.container{
    max-width:820px;
    padding:18px 15px 30px;
}

/* ==========================================
   HEADER
========================================== */

.header{
    text-align:center;
    margin-bottom:18px;
}

.logo{
    width:70px;
    height:auto;
    margin-bottom:8px;
}

.header h5{
    color:#00843D;
    font-size:18px;
    font-weight:700;
    margin-bottom:2px;
}

.header h6{
    color:#00843D;
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
}

.header h2{
    color:#00843D;
    font-size:38px;
    font-weight:800;
    margin-bottom:5px;
    letter-spacing:.5px;
}

.header h3{
    font-size:20px;
    font-weight:600;
    color:#444;
    margin-bottom:6px;
}

.header p{
    color:#777;
    font-size:15px;
}

/* ==========================================
   SEARCH
========================================== */

.search-card{

    background:#fff;

    border-radius:20px;

    padding:22px 24px;

    border:1px solid #edf1f4;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

    margin-bottom:18px;

}

.form-label{

    font-weight:600;

    margin-bottom:6px;

}

.form-control{

    height:46px;

    border-radius:10px;

    font-size:16px;

}
.form-control:focus{

    border-color:#00843D;

    box-shadow:0 0 0 .2rem rgba(0,132,61,.12);

}
.btn-primary{

    height:50px;

    border:none;

    border-radius:12px;

    background:#00843D;

    font-size:17px;

    font-weight:700;

    transition:.25s;

}
.btn-primary:hover{

    background:#006e33;

    transform:translateY(-1px);

    box-shadow:0 8px 18px rgba(0,132,61,.25);

}
/* ==========================================
   CAPTCHA
========================================== */

.captcha-wrapper{

    display:flex;

    gap:10px;

}

.captcha-box{

    background:#f8faf9;

    border:1px dashed #9fb9aa;

    color:#00843D;

    font-size:22px;

    letter-spacing:6px;

}
#reloadCaptcha{

    width:46px;

}

/* ==========================================
   RESULT
========================================== */

.result-card{

    background:#fff;

    border-radius:20px;

    padding:22px 24px;

    border:1px solid #edf1f4;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

    animation:fadeUp .35s ease;

}

.section-title{

    margin-top:18px;

    margin-bottom:10px;

    padding-left:10px;

    border-left:4px solid #00843D;

    color:#00843D;

    font-size:17px;

    font-weight:700;

}

.result-card p{

    margin-bottom:10px;

}

.method-badge{

    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:6px 14px;

    margin:4px;

    border-radius:30px;

    background:#edf8f2;

    color:#00843D;

    font-size:13px;

    font-weight:600;

}

/* ==========================================
   STATUS
========================================== */

.status{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    color:#fff;

    font-weight:600;

    font-size:15px;

    min-width:120px;

    text-align:center;

}

.success{
    background:#198754;
}

.primary{
    background:#0d6efd;
}

.warning{
    background:#ffc107;
    color:#212529;
}

.danger{
    background:#dc3545;
}

.secondary{
    background:#6c757d;
}

/* ==========================================
   ERROR
========================================== */

.error-box{

    background:#fff;

    border-left:5px solid #dc3545;

    border-radius:14px;

    padding:22px;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

    margin-bottom:18px;

}

.error-box h4{

    color:#dc3545;

    margin-bottom:12px;

}

/* ==========================================
   NOTICE
========================================== */

.notice-box{

    background:#fffbea;

    border-left:5px solid #ffc107;

    border-radius:14px;

    padding:20px;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

    margin-bottom:18px;

}

.notice-box h5{

    color:#b8860b;

    font-weight:700;

    margin-bottom:12px;

}

.notice-box ul{

    margin:0;

    padding-left:20px;

}

.notice-box li{

    margin-bottom:8px;

    line-height:1.7;

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    text-align:center;

    color:#666;

    font-size:13px;

    margin-top:15px;

    padding-bottom:20px;

}

.footer hr{

    margin-bottom:15px;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

    .container{

        padding-top:10px;

    }

    .logo{

        width:60px;

    }

    .header{

        margin-bottom:18px;

    }

    .header h5{

        font-size:16px;

    }

    .header h6{

        font-size:14px;

    }

    .header h2{

        font-size:32px;

    }

    .header h3{

        font-size:20px;

    }

    .search-card,
    .result-card,
    .notice-box,
    .error-box{

        padding:18px;

    }

    .captcha-box{

        font-size:18px;

        letter-spacing:3px;

    }

}
@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
@media(max-width:576px){

    .header h2{

        font-size:28px;

    }

    .header h3{

        font-size:18px;

    }

    .search-card,
    .result-card{

        padding:18px;

    }

}
