/* Unique styles for Login Page */
.feature-list { list-style: none; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: rgba(255,255,255,.85); font-weight: 500; }
.feat-dot { width: 28px; height: 28px; background: rgba(255,255,255,.18); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-dot i { color: #fff; font-size: .75rem; }

.eye-btn { position: absolute; right: 13px; background: none; border: none; cursor: pointer; color: var(--text-light); padding: 4px; line-height: 1; transition: color .2s; }
.eye-btn:hover { color: var(--primary); }

.row-opts { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.chk-label { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: .92rem; color: var(--text-mid); font-weight: 500; user-select: none; }
.chk-label input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; }

.link-forgot { font-size: .92rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: color .2s; }
.link-forgot:hover { color: var(--primary-dk); text-decoration: underline; }

.btn-first-login { display: flex; width: 100%; margin-top: 10px; padding: 12px; background: var(--white); border: 1.5px solid var(--primary); border-radius: 10px; color: var(--primary); font-size: .92rem; font-weight: 600; cursor: pointer; gap: 8px; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, box-shadow .2s; }
.btn-first-login:hover { background: var(--primary-lt); box-shadow: 0 4px 14px rgba(249,115,22,.18); color: var(--primary-dk); }

.btn-pwa { display: none; width: 100%; margin-top: 10px; padding: 11px; background: var(--white); border: 1.5px solid var(--primary); border-radius: 10px; color: var(--primary); font-size: .92rem; font-weight: 600; cursor: pointer; gap: 8px; align-items: center; justify-content: center; transition: background .2s; }
.btn-pwa.visible { display: flex; }
.btn-pwa:hover { background: var(--primary-lt); }

.form-footer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); text-align: center; font-size: .85rem; color: var(--text-light); }
.toast-offline { display: none; position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: #1e293b; color: #fff; padding: 10px 20px; border-radius: 100px; font-size: .88rem; font-weight: 600; z-index: 9999; align-items: center; gap: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.toast-offline.show { display: flex; }
