.mt-qar-wrap{
    max-width: 720px;
    margin: 16px auto;
    padding: 0 12px;
}

.mt-qar-card{
    background: #ffffff;
    border: 1px solid rgba(33,205,192,.18);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.mt-qar-head{
    background: linear-gradient(135deg, rgba(33,205,192,.14), rgba(33,205,192,.04));
    padding: 18px 16px;
    border-bottom: 1px solid rgba(33,205,192,.15);
}

.mt-qar-title{
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #17303a;
}

.mt-qar-sub{
    margin: 0;
    color: #5b6b75;
    font-size: .95rem;
    line-height: 1.45;
}

.mt-qar-body{
    padding: 16px;
}

.mt-qar-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.mt-qar-field label{
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #1f2d36;
    font-size: .94rem;
}

.mt-qar-field input,
.mt-qar-field textarea{
    width: 100%;
    border: 1px solid #d8e3e8;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    background: #fff;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mt-qar-field input:focus,
.mt-qar-field textarea:focus{
    border-color: #21cdc0;
    box-shadow: 0 0 0 4px rgba(33,205,192,.12);
}

.mt-qar-help{
    display: block;
    margin-top: 5px;
    color: #71808c;
    font-size: .83rem;
}

.mt-qar-row-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mt-qar-actions{
    margin-top: 18px;
}

.mt-qar-btn{
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 13px 16px;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: #21cdc0;
    box-shadow: 0 8px 18px rgba(33,205,192,.22);
}

.mt-qar-btn:active{
    transform: translateY(1px);
}

.mt-qar-note{
    margin-top: 12px;
    font-size: .86rem;
    color: #70808b;
    text-align: center;
}

.mt-qar-alert{
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: .95rem;
}

.mt-qar-alert-success{
    background: rgba(25,135,84,.10);
    color: #146c43;
    border: 1px solid rgba(25,135,84,.22);
}

.mt-qar-alert-danger{
    background: rgba(220,53,69,.08);
    color: #b42318;
    border: 1px solid rgba(220,53,69,.18);
}

.mt-qar-alert-warning{
    background: rgba(255,193,7,.12);
    color: #8a5b00;
    border: 1px solid rgba(255,193,7,.24);
}

.mt-qar-alert-info{
    background: rgba(13,110,253,.08);
    color: #0b57d0;
    border: 1px solid rgba(13,110,253,.18);
}

@media (max-width: 640px){
    .mt-qar-row-2{
        grid-template-columns: 1fr;
    }

    .mt-qar-head{
        padding: 16px 14px;
    }

    .mt-qar-body{
        padding: 14px;
    }
}
    