/*==================================================
STN Product Verification
==================================================*/

.stnpv-wrapper{
    width:100%;
    max-width:650px;
    margin:60px auto;
    padding:20px;
}

.stnpv-card{

    background:#111827;

    border-radius:18px;

    padding:40px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.stnpv-card h2{

    color:#fff;

    font-size:32px;

    margin:0 0 10px;

    text-align:center;

}

.stnpv-card p{

    color:#bfc6d1;

    text-align:center;

    margin-bottom:30px;

}

.stnpv-card input{

    width:100%;

    height:56px;

    margin-bottom:18px;

    border-radius:10px;

    border:1px solid #30363d;

    background:#1a1f29;

    color:#fff;

    font-size:16px;

    padding:0 18px;

    box-sizing:border-box;

    outline:none;

}

.stnpv-card input:focus{

    border-color:#2ecc71;

    box-shadow:0 0 0 3px rgba(46,204,113,.15);

}

#stnpv_verify_btn{

    width:100%;

    height:56px;

    border:none;

    border-radius:10px;

    background:#2ecc71;

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

#stnpv_verify_btn:hover{

    background:#27ae60;

    transform:translateY(-2px);

}

#stnpv_verify_btn:disabled{

    opacity:.7;

    cursor:not-allowed;

}

#stnpv_result{

    margin-top:25px;

}

.stnpv-success{

    background:#0d3f26;

    border:1px solid #27ae60;

    color:#fff;

    padding:20px;

    border-radius:10px;

}

.stnpv-success h3{

    margin-top:0;

    color:#2ecc71;

}

.stnpv-error{

    background:#4d1616;

    border:1px solid #ff4d4d;

    color:#fff;

    padding:18px;

    border-radius:10px;

}

.stnpv-loading{

    background:#1d3557;

    border:1px solid #3d7eff;

    color:#fff;

    padding:18px;

    border-radius:10px;

}

@media(max-width:768px){

.stnpv-wrapper{

    padding:15px;

}

.stnpv-card{

    padding:25px;

}

.stnpv-card h2{

    font-size:26px;

}

}