.conf-form-wrap {
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 14px;
}
.conf-form {
    background: rgba(255,255,255,0.92);
    padding: 25px;
    border-radius: 12px;
    max-width: 420px;
}
.conf-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}
.conf-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.conf-form .price {
    margin-top: 15px;
    font-weight: bold;
    color: #0f766e;
}
.conf-form button {
    margin-top: 15px;
    padding: 12px;
    width: 100%;
    border: none;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}
.conf-form button:hover {
    background: #1d4ed8;
}
.conf-form-wrap {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 14px;
    overflow: hidden;
}

/* لایه نیمه‌شفاف + blur */
.conf-form-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35); /* کمرنگ‌تر */
    backdrop-filter: blur(4px);           /* مات‌تر */
    -webkit-backdrop-filter: blur(4px);
}

/* فرم بالاتر از لایه */
.conf-form {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.92);
    padding: 25px;
    border-radius: 12px;
    max-width: 420px;
}

