    .form-container {
        background: rgba(255, 255, 255, 0.85);  /* Semi-transparent white */
        backdrop-filter: blur(5px);             /* Frosted glass effect */
        border-radius: 15px;                    /* Rounded edges */
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .form-title {
        color: #333;
        font-weight: 600;
    }

    /* Force RTL for placeholders */
    .form-control::placeholder {
        text-align: right !important;
        /* direction: rtl; */
        font-size: 14px !important;
        font-family: 'Tajawal', 'Arial', sans-serif;
    }

    /* Style form inputs */
    .form-control {
        border-radius: 8px;
        padding: 12px 15px;
        border: 1px solid #ddd;
        transition: all 0.3s;
        text-align: center;
    }
    .custom-input-wrapper {
        display: flex;          /* Align field and icon horizontally */
        align-items: center;   /* Vertically center items */
        width: 100%;           /* Adjust width as needed */
        max-width: 300px;      /* Optional: Set a max width */
        }

    .my-field {
        width: 200px;          /* Fixed width */
        min-width: 100px;      /* Minimum width */
        max-width: 100%;       /* Don’t overflow on mobile */
        height: 30px;
        
    }
    

    .input-group-text {
        background-color: #cad1d9;  /* Light gray background for icons */
    }

    .form-group input {
    direction: rtl;
    text-align: right;
    }

    .form-control:focus {
        border-color: #4a90e2;
        box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    }

    /* Submit button styling */
    .btn-submit {
        padding: 10px 30px;
        border-radius: 8px;
        font-weight: 500;
        background: linear-gradient(to right, #4a90e2, #6a5acd);
        border: none;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .form-container {
            padding: 20px;
        }
    }
