/* UniGUI Login Forması üçün 2026 Stil Paketi */



/* 1. Giriş Formuna Məxsus Ümumi Pəncərə (Glassmorphism) */
/* Delphi-də bu formanın Cls xassəsinə 'login-window' yazın */
.login-window {
    background-color: rgba(255, 255, 255, 0.96) !important;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Pəncərə başlığını gizlətmək və ya şəffaflaşdırmaq */
.login-window .x-window-header-default {
    background: transparent !important;
    border: none !important;
}

/* 2. UniEdit və UniComboBox üçün Ortaq "Yumşaq" Stillər */
/* Delphi-də bu komponentlərin Cls xassəsinə 'login-input' yazın */
.login-input .x-form-text-default {
    background-image: none !important; /* Standart köhnə kölgəni silir */
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important; /* İncə çərçivə */
    border-radius: 10px !important;       /* Yumşaq künclər */
    
    /* Ölçülər: Yerləşmənin pozulmaması üçün stabil saxlayırıq */
    height: 36px !important; 
    padding: 0 10px !important;
    font-size: 14px !important;
    line-height: 36px !important;
    
    box-shadow: none !important; /* Əlavə daxili kölgələri silir */
    transition: all 0.2s ease !important;
}

/* 3. Xüsusi UniComboBox CSS - Sağdakı Ox İşarəsi (Trigger) */
.login-input .x-form-trigger-default {
    background-color: transparent !important;
    
    /* Standart pikselli oxu SVG ilə əvəz edirik (daha təmiz görünür) */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%236b7280" viewBox="0 0 16 16"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    
    border: none !important;
    width: 24px !important;
    cursor: pointer !important;
}

/* ComboBox-un kənarındakı o köhnə göy zolağı silir */
.login-input .x-form-trigger-wrap-default {
    border: none !important;
}

/* 4. Fokuslanma Effekti (Xana seçiləndə) - Həm Edit, həm Combo */
.login-input .x-form-focus.x-form-text-default {
    border-color: #6366f1 !important; /* Bənövşəyi/Göy çərçivə */
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important; /* Yumşaq kənar işığı */
}

/* 5. Giriş Formundakı Düymə (Qradiyent) */
/* Delphi-də bu düymənin Cls xassəsinə 'login-button' yazın */
.login-button {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.login-button .x-btn-inner {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.login-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3) !important;
}

/* 6. Loqo və Etiket (Label) Tənzimləmələri */
.login-window img {
    -webkit-box-reflect: unset !important; /* Güzgü effektini silir */
    max-width: 100% !important;
}

.login-input .x-form-item-label-default {
    color: #4b5563 !important;
    font-weight: 600 !important;
    padding-bottom: 3px !important;
}
