.brl-form-wrapper {
    width: 100%;
    direction: rtl;
    font-family: inherit;
    display: flex;
    justify-content: center;
    padding: 24px 0;
}
.pmobile {
    text-align: center!important;
}

.sendcodeagain{
    background-color: red!important;
}
.brl-resend-link{
    font-size:16px;
    font-weight:600;
    color:#999;
    cursor:default;
    text-align: center;
}

.brl-resend-link.active{
    color:#007bff;
    cursor:pointer;
}
.brl-form-card {
    width: 100%;
    max-width: 760px;
    background:
            radial-gradient(circle at top right, rgba(255, 205, 86, 0.16), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #fffdf7 100%);
    border: 1px solid rgba(218, 165, 32, 0.18);
    border-radius: 26px;
    padding: 34px;
    box-shadow:
            0 22px 55px rgba(25, 31, 46, 0.10),
            0 4px 12px rgba(25, 31, 46, 0.05);
    position: relative;
    overflow: hidden;
}

.brl-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #d4af37, #f7d774, #b8860b);
}

.brl-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.brl-form-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d4af37, #f6d365);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.brl-form-header h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
    color: #1f2937;
}

.brl-form-header p {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.9;
}

.brl-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 600;
}

.brl-alert-success {
    background: #ecfdf3;
    color: #067647;
    border: 1px solid #abefc6;
}

.brl-alert-error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}

.brl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.brl-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brl-field-full {
    grid-column: 1 / -1;
}

.brl-field label {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.brl-field label span {
    color: #dc2626;
    margin-right: 3px;
}

.brl-field label small {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    margin-right: 6px;
}

.brl-field input[type="text"],
.brl-field input[type="tel"],
.brl-field input[type="file"] {
    width: 100%;
    min-height: 50px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    background: #ffffff;
    padding: 12px 14px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: all 0.22s ease;
    box-sizing: border-box;
}

.brl-field input[type="text"]:focus,
.brl-field input[type="tel"]:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.brl-field input::placeholder {
    color: #a1a1aa;
}

.brl-upload-box {
    border: 1px dashed #d6b75a;
    background: rgba(255, 248, 220, 0.45);
    border-radius: 18px;
    padding: 16px;
}

.brl-upload-box input {
    background: #fff !important;
}

.brl-upload-box p {
    margin: 9px 0 0;
    color: #78716c;
    font-size: 12px;
    line-height: 1.8;
}

.brl-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #edf0f3;
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
}

.brl-checkbox input {
    margin-top: 5px;
    width: 17px;
    height: 17px;
    accent-color: #b8860b;
}

.brl-checkbox span {
    font-size: 13px;
    line-height: 1.9;
    color: #4b5563;
}

.brl-submit-btn {
    width: 100%;
    border: none;
    margin-top: 22px;
    min-height: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, #b8860b, #d4af37, #f7d774);
    color: #1f2937;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(184, 134, 11, 0.26);
    transition: all 0.22s ease;
}

.brl-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(184, 134, 11, 0.34);
    filter: saturate(1.08);
}

.brl-submit-btn:active {
    transform: translateY(0);
}

.brl-form-note {
    text-align: center;
    margin: 15px 0 0;
    font-size: 12px;
    line-height: 1.8;
    color: #6b7280;
}

.brl-hidden-field {
    position: absolute !important;
    right: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 680px) {
    .brl-form-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .brl-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brl-form-header h2 {
        font-size: 22px;
    }

    .brl-form-header p {
        font-size: 14px;
    }

}

