:root{
    --uvt-violet:#5B2C83;
    --uvt-lavande:#F3ECFA;
    --uvt-cream:#FFF9F2;
    --uvt-line:#E8DDEA;
    --uvt-text:#241B2B;
    --uvt-muted:#756A7D;
}
.uvt-ticket-form{
    max-width:980px;
    margin:28px auto;
    padding:28px;
    border:1px solid var(--uvt-line);
    border-radius:28px;
    background:linear-gradient(135deg,#fff,var(--uvt-cream));
    box-shadow:0 18px 45px rgba(36,16,54,.10);
    color:var(--uvt-text);
}
.uvt-form-hero{
    margin-bottom:24px;
    padding:24px;
    border-radius:24px;
    background:linear-gradient(135deg,var(--uvt-violet),#8C58AA);
    color:#fff;
}
.uvt-form-hero span{
    display:inline-flex;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    font-size:13px;
    font-weight:800;
}
.uvt-form-hero h2{
    margin:14px 0 8px;
    font-size:32px;
    line-height:1.05;
    color:#fff;
}
.uvt-form-hero p{
    margin:0;
    color:rgba(255,255,255,.88);
}
.uvt-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}
.uvt-form-grid p{margin:0}
.uvt-form-grid .uvt-full{grid-column:1/-1}
.uvt-ticket-form label{
    display:block;
    margin-bottom:7px;
    color:var(--uvt-violet);
    font-weight:800;
}
.uvt-ticket-form input,
.uvt-ticket-form select,
.uvt-ticket-form textarea{
    width:100%;
    border:1px solid var(--uvt-line);
    border-radius:14px;
    padding:13px 14px;
    background:#fff;
    color:var(--uvt-text);
}
.uvt-ticket-form small{color:var(--uvt-muted)}
.uvt-checkbox label{color:var(--uvt-text);font-weight:600}
.uvt-checkbox input{width:auto;margin-right:8px}
.uvt-submit{
    margin-top:20px;
    border:0;
    border-radius:999px;
    padding:14px 22px;
    background:var(--uvt-violet);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(91,44,131,.22);
}
.uvt-alert{
    max-width:980px;
    margin:20px auto;
    border-radius:18px;
    padding:16px 18px;
    border:1px solid var(--uvt-line);
}
.uvt-success{background:#EAF3E7;color:#315A2E}
.uvt-error{background:#FFE5E5;color:#8A2424}
@media(max-width:760px){
    .uvt-form-grid{grid-template-columns:1fr}
    .uvt-ticket-form{padding:18px}
    .uvt-form-hero h2{font-size:25px}
}
