/* ===============================
   BEZON Warranty Check
   by ChatGPT
================================ */

.ezone-warranty-widget{

    max-width:760px;
    margin:40px auto;

    padding:40px;

    background:#fff;

    border-radius:18px;

    border:none;

    box-shadow:
        0 15px 45px rgba(0,0,0,.08);

}

/* Title */

.ezone-warranty-widget h2{

    margin:0;

    text-align:center;

    font-size:36px;

    font-weight:700;

    color:#0d4ea6;

}

.ezone-warranty-widget h2:after{

    content:"Kiểm tra bảo hành chính hãng BEZON";

    display:block;

    margin-top:10px;

    font-size:16px;

    font-weight:400;

    color:#777;

}

/* Label */

.ezone-warranty-form label>span{

    display:block;

    margin:25px 0 10px;

    font-weight:600;

    color:#222;

    font-size:15px;

}

/* Input */

.ezone-warranty-input-group{

    display:flex;

    gap:15px;

}

.ezone-warranty-input-group input{

    flex:1;

    height:58px;

    padding:0 20px;

    border-radius:12px;

    border:2px solid #e4e8ef;

    font-size:17px;

    transition:.3s;

}

.ezone-warranty-input-group input:focus{

    border-color:#ff6b00;

    box-shadow:0 0 0 4px rgba(255,107,0,.15);

    outline:none;

}

/* Button */

.ezone-warranty-input-group button{

    height:58px;

    padding:0 35px;

    background:#ff6b00;

    border:none;

    color:#fff;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    transition:.3s;

}

.ezone-warranty-input-group button:hover{

    background:#e65a00;

    transform:translateY(-2px);

}

/* Error */

.ezone-warranty-message{

    margin-top:20px;

}

.ezone-warranty-message.is-error{

    background:#fff3f3;

    color:#d32f2f;

    border-left:4px solid #d32f2f;

    padding:12px;

    border-radius:8px;

}

/* Result */

.ezone-warranty-result{

    margin-top:30px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    border:none;

    background:none;

}

.ezone-warranty-result>div{

    background:#f8f9fc;

    border-radius:14px;

    padding:18px;

    border:1px solid #edf2f7;

    transition:.25s;

}

.ezone-warranty-result>div:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.ezone-warranty-result span{

    display:block;

    color:#888;

    margin-bottom:8px;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.ezone-warranty-result strong{

    display:block;

    color:#0d4ea6;

    font-size:18px;

    line-height:1.5;

}

/* Mobile */

@media(max-width:768px){

.ezone-warranty-widget{

margin:15px;

padding:25px;

}

.ezone-warranty-widget h2{

font-size:28px;

}

.ezone-warranty-input-group{

flex-direction:column;

}

.ezone-warranty-input-group button{

width:100%;

}

.ezone-warranty-result{

grid-template-columns:1fr;

}

}