.ypcgm-form{
    max-width:720px;
    margin:20px auto;
    direction:rtl;
    font-family:inherit;
}
.ypcgm-card{
    background:#ffffff;
    border:1px solid #e1e1e1;
    border-radius:8px;
    padding:16px 18px;
    margin-bottom:16px;
    box-shadow:0 2px 4px rgba(0,0,0,.03);
}
.ypcgm-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:12px;
}
.ypcgm-card-header h3{
    margin:0;
    font-size:16px;
}
.ypcgm-field{
    margin-bottom:12px;
}
.ypcgm-field label{
    display:block;
    margin-bottom:4px;
    font-size:13px;
}
.ypcgm-field input[type="text"],
.ypcgm-field input[type="number"],
.ypcgm-field textarea,
.ypcgm-field select{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}
.ypcgm-submit-wrap{
    text-align:left;
}
.ypcgm-help-text,
.ypcgm-purchase-hint{
    font-size:12px;
    color:#666;
    margin-top:4px;
}
.ypcgm-success{
    background:#e6ffed;
    border:1px solid #2ecc71;
    border-radius:4px;
    padding:8px 10px;
    font-size:13px;
}
.ypcgm-error{
    background:#ffecec;
    border:1px solid #e74c3c;
    border-radius:4px;
    padding:8px 10px;
    font-size:13px;
}
.ypcgm-field-error{
    border-color:#e74c3c !important;
    background:#fff5f5;
    box-shadow:0 0 0 1px rgba(231,76,60,.18);
}
.ypcgm-lookup-result{
    margin-top:10px;
}

/* Material-style error message under fields */
.ypcgm-field{
    position:relative;
    margin-bottom:16px;
}
.ypcgm-field input[type="text"],
.ypcgm-field input[type="number"],
.ypcgm-field input[type="tel"],
.ypcgm-field input[type="email"],
.ypcgm-field textarea,
.ypcgm-field select{
    border-radius:4px;
    border:1px solid #cfd8dc;
    padding:8px 10px;
    background:#fafafa;
    transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.ypcgm-field input[type="text"]:focus,
.ypcgm-field input[type="number"]:focus,
.ypcgm-field input[type="tel"]:focus,
.ypcgm-field input[type="email"]:focus,
.ypcgm-field textarea:focus,
.ypcgm-field select:focus{
    outline:none;
    border-color:#3f51b5;
    box-shadow:0 0 0 1px rgba(63,81,181,.25);
    background:#ffffff;
}
.ypcgm-field-error{
    border-color:#e53935 !important;
    background:#fff5f5;
    box-shadow:0 0 0 1px rgba(229,57,53,.25);
}
.ypcgm-field-error-msg{
    margin-top:4px;
    font-size:11px;
    color:#e53935;
    display:flex;
    align-items:center;
    gap:4px;
}
.ypcgm-field-error-icon{
    font-size:12px;
    line-height:1;
}
