@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');

.cof-form-ux {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg,#fdfbfb,#ebedee);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
}
.cof-form-ux h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}
.cof-form-ux input, .cof-form-ux select {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s;
}
.cof-form-ux input:focus, .cof-form-ux select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 8px rgba(0,115,170,0.3);
    outline: none;
}
.cof-form-ux button {
    width: 100%;
    padding: 14px;
    background: #0073aa;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.cof-form-ux button:hover {
    background: #005177;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,115,170,0.3);
}
.cof-total {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
}
.cof-success {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

/* واکنش‌گرایی موبایل */
@media (max-width: 600px) {
    .cof-form-ux {
        padding: 20px;
        margin: 20px;
    }
    .cof-form-ux input, .cof-form-ux select, .cof-form-ux button {
        font-size: 16px;
        padding: 12px;
    }
}
