@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/fonts/webfonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #063888;
    --primary-hover: #1c2a44;
    --primary-light: rgba(6, 56, 136, 0.1);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input, button {
    font-family: inherit;
}

.card {
    background: #fff;
    border: none;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.form-control {
    border: 1px solid var(--gray-300);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary\/20 {
    background-color: var(--primary-light) !important;
}

.form-label {
    color: var(--gray-700);
    font-weight: 500;
}

.text-muted {
    color: var(--gray-500) !important;
}

.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.max-w-sm {
    max-width: 24rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.fw-semibold {
    font-weight: 600;
}

.small {
    font-size: 0.875rem;
}

.input-group input.form-control::placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control::-webkit-input-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control::-moz-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control:-ms-input-placeholder {
    color: #063888;
    opacity: 0.7;
}

.input-group input.form-control:-moz-placeholder {
    color: #063888;
    opacity: 0.7;
}

.auth-page .input-group input.form-control {
    border: 1px solid #063888 !important;
    transition: all 0.2s ease !important;
    background: #A3A8B4 !important;
    background-image: none !important;
    padding: 0.75rem 1rem !important;
    padding-right: 2.5rem !important;
    border-radius: 0.75rem !important;
    font-size: 0.95rem !important;
    color: #063888 !important;
}

.auth-page .input-group input.form-control:focus {
    border-color: #1c2a44 !important;
    box-shadow: 0 0 0 3px rgba(6, 56, 136, 0.1) !important;
    outline: none !important;
    background: #FFFFFF !important;
    background-image: none !important;
}

.auth-page .input-group input.form-control::placeholder {
    color: #063888 !important;
    opacity: 0.7 !important;
}

.auth-page .input-group input.form-control::-webkit-input-placeholder {
    color: #063888 !important;
    opacity: 0.7 !important;
}

.auth-page .input-group input.form-control::-moz-placeholder {
    color: #063888 !important;
    opacity: 0.7 !important;
}

.auth-page .input-group input.form-control:-ms-input-placeholder {
    color: #063888 !important;
    opacity: 0.7 !important;
}

.auth-page .input-group input.form-control:-moz-placeholder {
    color: #063888 !important;
    opacity: 0.7 !important;
} 