.dcdc-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    direction: rtl;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
}

.dcdc-form label {
    display: block;
    margin-bottom: 10px;
}

.dcdc-form input,
.dcdc-form select,
.dcdc-form button {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 5px;
    box-sizing: border-box;
}

.dcdc-form button {
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dcdc-form button:hover {
    background-color: #005f8d;
}

.dcdc-loading {
    text-align: center;
    color: #0073aa;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dcdc-message {
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
}

form{
    font-family: inherit;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;  /* مرکز افقی */
    align-items: center;      /* مرکز عمودی */
    min-height: 100px;        /* ارتفاع مناسب برای مرکز شدن */
    margin: 20px 0;           /* فاصله از بالا و پایین */
}


/* 
 */

 .dcdc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.dcdc-checkbox-label a {
    color: #0073aa;
    text-decoration: underline;
}

.dcdc-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
