
        body {
             font-family: 'Vazirmatn', 'IRANSans', sans-serif;
             }
        :root {
             --new-red-primary: #be1515; 
             --new-red-darker: #a31111;
             }
        .btn-primary { 
            background-color: var(--new-red-primary);
             transition: background-color 0.3s ease;
             }
        .btn-primary:hover {
             background-color: var(--new-red-darker); 
            }
        .text-primary-red { 
            color: var(--new-red-primary); 
        }
        .focus\:border-primary-red:focus {
             border-color: var(--new-red-primary) !important; 
             box-shadow: 0 0 0 2px rgba(190, 21, 21, 0.25) !important;
             }
        .input-with-icon { 
            padding-right: 2.75rem; 
        }
