/* ========== CSS Reset ========== */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

::before, ::after {
    --tw-content: '';
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body {
    margin: 0;
    line-height: inherit;
}

/* ========== 颜色变量 ========== */
:root {
    --color-primary: #165DFF;
    --color-secondary: #36CFC9;
    --color-neutral: #F5F7FA;
    --color-dark: #1D2129;
    --color-danger: #F53F3F;
}

/* ========== 布局工具类 ========== */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.hidden { display: none; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.w-full-50 { width: 50%; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-md { max-width: 28rem; }

/* ========== 间距工具类 ========== */
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-3 { padding: 0.75rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-10 { padding-right: 2.5rem; }
.pt-8 { padding-top: 2rem; }
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

/* ========== 间距（space）工具类 ========== */
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

/* ========== 文字工具类 ========== */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-center { text-align: center; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-tight { letter-spacing: -0.025em; }

/* ========== 背景工具类 ========== */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }

/* ========== 边框工具类 ========== */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-300 { border-color: #d1d5db; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ========== 阴影工具类 ========== */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* ========== 溢出工具类 ========== */
.overflow-hidden { overflow: hidden; }

/* ========== 定位工具类 ========== */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-y-0 { top: 0; bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* ========== 指针工具类 ========== */
.pointer-events-none { pointer-events: none; }
.cursor-not-allowed { cursor: not-allowed; }

/* ========== 轮廓工具类 ========== */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

/* ========== 自定义颜色类 ========== */
.bg-danger { background-color: var(--color-danger); }
.text-primary { color: var(--color-primary); }
.text-danger { color: var(--color-danger); }
.text-dark { color: var(--color-dark); }
.border-danger { border-color: var(--color-danger); }

/* ========== 自定义渐变背景 ========== */
.bg-gradient-primary {
    background: linear-gradient(135deg, #165DFF 0%, #36CFC9 100%);
}

/* ========== 透明度工具类 ========== */
.bg-primary\/10 { background-color: rgba(22, 93, 255, 0.1); }
.bg-primary\/80 { background-color: rgba(22, 93, 255, 0.8); }
.bg-primary\/90 { background-color: rgba(22, 93, 255, 0.9); }
.bg-danger\/10 { background-color: rgba(245, 63, 63, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }

/* ========== 过渡动画 ========== */
.transition-custom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 文字阴影 ========== */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ========== 输入框样式 ========== */
input[type="text"],
input[type="password"] {
    display: block;
    width: 100%;
}

/* ========== 按钮样式 ========== */
button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}
a {
    text-decoration: none;
}

/* ========== 表单元素 ========== */
.block {
    display: block;
}

/* ========== 响应式工具类 ========== */
@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:p-12 { padding: 3rem; }
    .md\:mt-12 { margin-top: 3rem; }
}

/* ========== Focus 状态 ========== */
.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-primary:focus {
    --tw-ring-color: var(--color-primary);
}

.focus\:ring-primary\/50:focus {
    --tw-ring-color: rgba(22, 93, 255, 0.5);
}

.focus\:border-primary:focus {
    border-color: var(--color-primary);
}

.focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* ========== Hover 状态 ========== */
.hover\:bg-primary\/90:hover {
    background-color: rgba(22, 93, 255, 0.9);
}

.hover\:text-gray-600:hover {
    color: #4b5563;
}

/* ========== Font Awesome 图标支持 ========== */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}

/* ========== 响应式字体大小（clamp） ========== */
.text-responsive-xl {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-responsive-2xl {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* ========== 抖动动画 ========== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.svg-database::before {
    content: '';
    display: flex;
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="61.71428571428571" height="72" fill="white" viewBox="0 -61.71428571428571 61.71428571428571 72"><path d="M13.06-32.58L13.06-32.58L13.06-32.58Q21.33-30.86 30.86-30.86L30.86-30.86L30.86-30.86Q40.38-30.86 48.66-32.58L48.66-32.58L48.66-32.58Q56.93-34.31 61.71-37.69L61.71-37.69L61.71-30.86L61.71-30.86Q61.71-28.08 57.58-25.71L57.58-25.71L57.58-25.71Q53.44-23.34 46.33-21.96L46.33-21.96L46.33-21.96Q39.21-20.57 30.86-20.57L30.86-20.57L30.86-20.57Q22.50-20.57 15.39-21.96L15.39-21.96L15.39-21.96Q8.28-23.34 4.14-25.71L4.14-25.71L4.14-25.71Q0-28.08 0-30.86L0-30.86L0-37.69L0-37.69Q4.78-34.31 13.06-32.58ZM13.06-1.73L13.06-1.73L13.06-1.73Q21.33 0 30.86 0L30.86 0L30.86 0Q40.38 0 48.66-1.73L48.66-1.73L48.66-1.73Q56.93-3.46 61.71-6.83L61.71-6.83L61.71 0L61.71 0Q61.71 2.77 57.58 5.14L57.58 5.14L57.58 5.14Q53.44 7.51 46.33 8.90L46.33 8.90L46.33 8.90Q39.21 10.29 30.86 10.29L30.86 10.29L30.86 10.29Q22.50 10.29 15.39 8.90L15.39 8.90L15.39 8.90Q8.28 7.51 4.14 5.14L4.14 5.14L4.14 5.14Q0 2.77 0 0L0 0L0-6.83L0-6.83Q4.78-3.46 13.06-1.73ZM13.06-17.16L13.06-17.16L13.06-17.16Q21.33-15.43 30.86-15.43L30.86-15.43L30.86-15.43Q40.38-15.43 48.66-17.16L48.66-17.16L48.66-17.16Q56.93-18.88 61.71-22.26L61.71-22.26L61.71-15.43L61.71-15.43Q61.71-12.66 57.58-10.29L57.58-10.29L57.58-10.29Q53.44-7.92 46.33-6.53L46.33-6.53L46.33-6.53Q39.21-5.14 30.86-5.14L30.86-5.14L30.86-5.14Q22.50-5.14 15.39-6.53L15.39-6.53L15.39-6.53Q8.28-7.92 4.14-10.29L4.14-10.29L4.14-10.29Q0-12.66 0-15.43L0-15.43L0-22.26L0-22.26Q4.78-18.88 13.06-17.16ZM15.39-60.33L15.39-60.33L15.39-60.33Q22.50-61.71 30.86-61.71L30.86-61.71L30.86-61.71Q39.21-61.71 46.33-60.33L46.33-60.33L46.33-60.33Q53.44-58.94 57.58-56.57L57.58-56.57L57.58-56.57Q61.71-54.20 61.71-51.43L61.71-51.43L61.71-46.29L61.71-46.29Q61.71-43.51 57.58-41.14L57.58-41.14L57.58-41.14Q53.44-38.77 46.33-37.39L46.33-37.39L46.33-37.39Q39.21-36 30.86-36L30.86-36L30.86-36Q22.50-36 15.39-37.39L15.39-37.39L15.39-37.39Q8.28-38.77 4.14-41.14L4.14-41.14L4.14-41.14Q0-43.51 0-46.29L0-46.29L0-51.43L0-51.43Q0-54.20 4.14-56.57L4.14-56.57L4.14-56.57Q8.28-58.94 15.39-60.33Z"/></svg>') no-repeat center;
    background-size: contain;
}

.svg-bolt::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="35.96672712053571" height="66.85714285714286" fill="white" viewBox="0.040178571428571425 -56.57142857142857 35.96672712053571 66.85714285714286"><path d="M35.56-38.97L35.56-38.97L35.56-38.97Q36.28-38.17 35.84-37.21L35.84-37.21L14.14 9.28L14.14 9.28Q13.62 10.29 12.46 10.29L12.46 10.29L12.46 10.29Q12.29 10.29 11.89 10.21L11.89 10.21L11.89 10.21Q11.21 10.00 10.87 9.44L10.87 9.44L10.87 9.44Q10.53 8.88 10.69 8.24L10.69 8.24L18.60-24.23L2.29-20.17L2.29-20.17Q2.13-20.13 1.81-20.13L1.81-20.13L1.81-20.13Q1.08-20.13 0.56-20.57L0.56-20.57L0.56-20.57Q-0.16-21.17 0.04-22.14L0.04-22.14L8.12-55.29L8.12-55.29Q8.28-55.85 8.76-56.21L8.76-56.21L8.76-56.21Q9.24-56.57 9.88-56.57L9.88-56.57L23.06-56.57L23.06-56.57Q23.83-56.57 24.35-56.07L24.35-56.07L24.35-56.07Q24.87-55.57 24.87-54.88L24.87-54.88L24.87-54.88Q24.87-54.56 24.67-54.16L24.67-54.16L17.80-35.56L33.71-39.50L33.71-39.50Q34.03-39.58 34.19-39.58L34.19-39.58L34.19-39.58Q34.96-39.58 35.56-38.97Z"/></svg>') no-repeat center;
    background-size: contain;
}

.svg-shield::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="51.42857142857142" height="61.71428571428571" fill="white" viewBox="0 -56.57142857142857 51.42857142857142 61.71428571428571"><path d="M43.71-23.14L43.71-23.14L43.71-48.86L25.71-48.86L25.71-3.17L25.71-3.17Q30.50-5.71 34.27-8.68L34.27-8.68L34.27-8.68Q43.71-16.07 43.71-23.14ZM51.43-54.00L51.43-54.00L51.43-23.14L51.43-23.14Q51.43-19.69 50.08-16.29L50.08-16.29L50.08-16.29Q48.74-12.90 46.75-10.27L46.75-10.27L46.75-10.27Q44.76-7.63 42.01-5.14L42.01-5.14L42.01-5.14Q39.25-2.65 36.92-1.00L36.92-1.00L36.92-1.00Q34.59 0.64 32.06 2.11L32.06 2.11L32.06 2.11Q29.53 3.58 28.47 4.10L28.47 4.10L28.47 4.10Q27.40 4.62 26.76 4.90L26.76 4.90L26.76 4.90Q26.28 5.14 25.71 5.14L25.71 5.14L25.71 5.14Q25.15 5.14 24.67 4.90L24.67 4.90L24.67 4.90Q24.03 4.62 22.96 4.10L22.96 4.10L22.96 4.10Q21.90 3.58 19.37 2.11L19.37 2.11L19.37 2.11Q16.83 0.64 14.50-1.00L14.50-1.00L14.50-1.00Q12.17-2.65 9.42-5.14L9.42-5.14L9.42-5.14Q6.67-7.63 4.68-10.27L4.68-10.27L4.68-10.27Q2.69-12.90 1.35-16.29L1.35-16.29L1.35-16.29Q0-19.69 0-23.14L0-23.14L0-54.00L0-54.00Q0-55.04 0.76-55.81L0.76-55.81L0.76-55.81Q1.53-56.57 2.57-56.57L2.57-56.57L48.86-56.57L48.86-56.57Q49.90-56.57 50.67-55.81L50.67-55.81L50.67-55.81Q51.43-55.04 51.43-54.00Z"/></svg>') no-repeat center;
    background-size: contain;
}

.svg-cogs::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="77.14285714285714" height="70.75446428571428" fill="white" viewBox="0 -61.07142857142856 77.14285714285714 70.75446428571428"><path d="M32.99-18.44L32.99-18.44L32.99-18.44Q36-21.46 36-25.71L36-25.71L36-25.71Q36-29.97 32.99-32.99L32.99-32.99L32.99-32.99Q29.97-36 25.71-36L25.71-36L25.71-36Q21.46-36 18.44-32.99L18.44-32.99L18.44-32.99Q15.43-29.97 15.43-25.71L15.43-25.71L15.43-25.71Q15.43-21.46 18.44-18.44L18.44-18.44L18.44-18.44Q21.46-15.43 25.71-15.43L25.71-15.43L25.71-15.43Q29.97-15.43 32.99-18.44ZM66.86-5.14L66.86-5.14L66.86-5.14Q66.86-7.23 65.33-8.76L65.33-8.76L65.33-8.76Q63.80-10.29 61.71-10.29L61.71-10.29L61.71-10.29Q59.62-10.29 58.10-8.76L58.10-8.76L58.10-8.76Q56.57-7.23 56.57-5.14L56.57-5.14L56.57-5.14Q56.57-3.01 58.08-1.51L58.08-1.51L58.08-1.51Q59.58 0 61.71 0L61.71 0L61.71 0Q63.84 0 65.35-1.51L65.35-1.51L65.35-1.51Q66.86-3.01 66.86-5.14ZM66.86-46.29L66.86-46.29L66.86-46.29Q66.86-48.37 65.33-49.90L65.33-49.90L65.33-49.90Q63.80-51.43 61.71-51.43L61.71-51.43L61.71-51.43Q59.62-51.43 58.10-49.90L58.10-49.90L58.10-49.90Q56.57-48.37 56.57-46.29L56.57-46.29L56.57-46.29Q56.57-44.16 58.08-42.65L58.08-42.65L58.08-42.65Q59.58-41.14 61.71-41.14L61.71-41.14L61.71-41.14Q63.84-41.14 65.35-42.65L65.35-42.65L65.35-42.65Q66.86-44.16 66.86-46.29ZM51.43-29.37L51.43-29.37L51.43-21.94L51.43-21.94Q51.43-21.54 51.15-21.15L51.15-21.15L51.15-21.15Q50.87-20.77 50.50-20.73L50.50-20.73L44.28-19.77L44.28-19.77Q43.83-18.36 42.99-16.71L42.99-16.71L42.99-16.71Q44.36-14.79 46.61-12.09L46.61-12.09L46.61-12.09Q46.89-11.65 46.89-11.29L46.89-11.29L46.89-11.29Q46.89-10.81 46.61-10.53L46.61-10.53L46.61-10.53Q45.68-9.32 43.29-6.93L43.29-6.93L43.29-6.93Q40.90-4.54 40.14-4.54L40.14-4.54L40.14-4.54Q39.70-4.54 39.29-4.82L39.29-4.82L34.67-8.44L34.67-8.44Q33.19-7.67 31.58-7.19L31.58-7.19L31.58-7.19Q31.14-2.85 30.66-0.96L30.66-0.96L30.66-0.96Q30.37 0 29.45 0L29.45 0L21.98 0L21.98 0Q21.54 0 21.17-0.30L21.17-0.30L21.17-0.30Q20.81-0.60 20.77-1.00L20.77-1.00L19.85-7.15L19.85-7.15Q18.48-7.55 16.83-8.40L16.83-8.40L12.09-4.82L12.09-4.82Q11.81-4.54 11.29-4.54L11.29-4.54L11.29-4.54Q10.85-4.54 10.45-4.86L10.45-4.86L10.45-4.86Q4.66-10.21 4.66-11.29L4.66-11.29L4.66-11.29Q4.66-11.65 4.94-12.05L4.94-12.05L4.94-12.05Q5.34-12.62 6.59-14.18L6.59-14.18L6.59-14.18Q7.83-15.75 8.48-16.63L8.48-16.63L8.48-16.63Q7.55-18.40 7.07-19.93L7.07-19.93L0.96-20.89L0.96-20.89Q0.56-20.93 0.28-21.27L0.28-21.27L0.28-21.27Q0-21.62 0-22.06L0-22.06L0-29.49L0-29.49Q0-29.89 0.28-30.27L0.28-30.27L0.28-30.27Q0.56-30.66 0.92-30.70L0.92-30.70L7.15-31.66L7.15-31.66Q7.59-33.07 8.44-34.71L8.44-34.71L8.44-34.71Q7.07-36.64 4.82-39.33L4.82-39.33L4.82-39.33Q4.54-39.78 4.54-40.14L4.54-40.14L4.54-40.14Q4.54-40.62 4.82-40.94L4.82-40.94L4.82-40.94Q5.71-42.15 8.12-44.52L8.12-44.52L8.12-44.52Q10.53-46.89 11.29-46.89L11.29-46.89L11.29-46.89Q11.73-46.89 12.13-46.61L12.13-46.61L16.75-42.99L16.75-42.99Q18.12-43.71 19.85-44.28L19.85-44.28L19.85-44.28Q20.29-48.62 20.77-50.46L20.77-50.46L20.77-50.46Q21.05-51.43 21.98-51.43L21.98-51.43L29.45-51.43L29.45-51.43Q29.89-51.43 30.25-51.13L30.25-51.13L30.25-51.13Q30.62-50.83 30.66-50.42L30.66-50.42L31.58-44.28L31.58-44.28Q32.95-43.87 34.59-43.03L34.59-43.03L39.33-46.61L39.33-46.61Q39.66-46.89 40.14-46.89L40.14-46.89L40.14-46.89Q40.58-46.89 40.98-46.57L40.98-46.57L40.98-46.57Q46.77-41.22 46.77-40.14L46.77-40.14L46.77-40.14Q46.77-39.82 46.49-39.37L46.49-39.37L46.49-39.37Q46.00-38.73 44.80-37.21L44.80-37.21L44.80-37.21Q43.59-35.68 42.99-34.79L42.99-34.79L42.99-34.79Q43.92-32.87 44.36-31.50L44.36-31.50L50.46-30.58L50.46-30.58Q50.87-30.50 51.15-30.15L51.15-30.15L51.15-30.15Q51.43-29.81 51.43-29.37ZM77.14-7.96L77.14-7.96L77.14-2.33L77.14-2.33Q77.14-1.69 71.16-1.08L71.16-1.08L71.16-1.08Q70.67 0 69.95 1.00L69.95 1.00L69.95 1.00Q72 5.54 72 6.55L72 6.55L72 6.55Q72 6.71 71.84 6.83L71.84 6.83L71.84 6.83Q66.94 9.68 66.86 9.68L66.86 9.68L66.86 9.68Q66.54 9.68 65.01 7.79L65.01 7.79L65.01 7.79Q63.48 5.91 62.92 5.06L62.92 5.06L62.92 5.06Q62.12 5.14 61.71 5.14L61.71 5.14L61.71 5.14Q61.31 5.14 60.51 5.06L60.51 5.06L60.51 5.06Q59.95 5.91 58.42 7.79L58.42 7.79L58.42 7.79Q56.89 9.68 56.57 9.68L56.57 9.68L56.57 9.68Q56.49 9.68 51.59 6.83L51.59 6.83L51.59 6.83Q51.43 6.71 51.43 6.55L51.43 6.55L51.43 6.55Q51.43 5.54 53.48 1.00L53.48 1.00L53.48 1.00Q52.75 0 52.27-1.08L52.27-1.08L52.27-1.08Q46.29-1.69 46.29-2.33L46.29-2.33L46.29-7.96L46.29-7.96Q46.29-8.60 52.27-9.20L52.27-9.20L52.27-9.20Q52.79-10.37 53.48-11.29L53.48-11.29L53.48-11.29Q51.43-15.83 51.43-16.83L51.43-16.83L51.43-16.83Q51.43-17.00 51.59-17.12L51.59-17.12L51.59-17.12Q51.75-17.20 53.00-17.92L53.00-17.92L53.00-17.92Q54.24-18.64 55.37-19.29L55.37-19.29L55.37-19.29Q56.49-19.93 56.57-19.93L56.57-19.93L56.57-19.93Q56.89-19.93 58.42-18.06L58.42-18.06L58.42-18.06Q59.95-16.19 60.51-15.35L60.51-15.35L60.51-15.35Q61.31-15.43 61.71-15.43L61.71-15.43L61.71-15.43Q62.12-15.43 62.92-15.35L62.92-15.35L62.92-15.35Q64.97-18.20 66.62-19.85L66.62-19.85L66.86-19.93L66.86-19.93Q67.02-19.93 71.84-17.12L71.84-17.12L71.84-17.12Q72-17.00 72-16.83L72-16.83L72-16.83Q72-15.83 69.95-11.29L69.95-11.29L69.95-11.29Q70.63-10.37 71.16-9.20L71.16-9.20L71.16-9.20Q77.14-8.60 77.14-7.96ZM77.14-49.10L77.14-49.10L77.14-43.47L77.14-43.47Q77.14-42.83 71.16-42.23L71.16-42.23L71.16-42.23Q70.67-41.14 69.95-40.14L69.95-40.14L69.95-40.14Q72-35.60 72-34.59L72-34.59L72-34.59Q72-34.43 71.84-34.31L71.84-34.31L71.84-34.31Q66.94-31.46 66.86-31.46L66.86-31.46L66.86-31.46Q66.54-31.46 65.01-33.35L65.01-33.35L65.01-33.35Q63.48-35.24 62.92-36.08L62.92-36.08L62.92-36.08Q62.12-36 61.71-36L61.71-36L61.71-36Q61.31-36 60.51-36.08L60.51-36.08L60.51-36.08Q59.95-35.24 58.42-33.35L58.42-33.35L58.42-33.35Q56.89-31.46 56.57-31.46L56.57-31.46L56.57-31.46Q56.49-31.46 51.59-34.31L51.59-34.31L51.59-34.31Q51.43-34.43 51.43-34.59L51.43-34.59L51.43-34.59Q51.43-35.60 53.48-40.14L53.48-40.14L53.48-40.14Q52.75-41.14 52.27-42.23L52.27-42.23L52.27-42.23Q46.29-42.83 46.29-43.47L46.29-43.47L46.29-49.10L46.29-49.10Q46.29-49.74 52.27-50.34L52.27-50.34L52.27-50.34Q52.79-51.51 53.48-52.43L53.48-52.43L53.48-52.43Q51.43-56.97 51.43-57.98L51.43-57.98L51.43-57.98Q51.43-58.14 51.59-58.26L51.59-58.26L51.59-58.26Q51.75-58.34 53.00-59.06L53.00-59.06L53.00-59.06Q54.24-59.79 55.37-60.43L55.37-60.43L55.37-60.43Q56.49-61.07 56.57-61.07L56.57-61.07L56.57-61.07Q56.89-61.07 58.42-59.20L58.42-59.20L58.42-59.20Q59.95-57.33 60.51-56.49L60.51-56.49L60.51-56.49Q61.31-56.57 61.71-56.57L61.71-56.57L61.71-56.57Q62.12-56.57 62.92-56.49L62.92-56.49L62.92-56.49Q64.97-59.34 66.62-60.99L66.62-60.99L66.86-61.07L66.86-61.07Q67.02-61.07 71.84-58.26L71.84-58.26L71.84-58.26Q72-58.14 72-57.98L72-57.98L72-57.98Q72-56.97 69.95-52.43L69.95-52.43L69.95-52.43Q70.63-51.51 71.16-50.34L71.16-50.34L71.16-50.34Q77.14-49.74 77.14-49.10Z"/></svg>') no-repeat center;
    background-size: contain;
}
.svg-user::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="51.42857142857142" height="61.71428571428571" fill="gray" viewBox="0 -56.57142857142857 51.42857142857142 61.71428571428571"><path d="M51.43-5.50L51.43-5.50L51.43-5.50Q51.43-1.13 48.92 2.01L48.92 2.01L48.92 2.01Q46.41 5.14 42.87 5.14L42.87 5.14L8.56 5.14L8.56 5.14Q5.02 5.14 2.51 2.01L2.51 2.01L2.51 2.01Q0-1.13 0-5.50L0-5.50L0-5.50Q0-8.92 0.34-11.95L0.34-11.95L0.34-11.95Q0.68-14.99 1.61-18.06L1.61-18.06L1.61-18.06Q2.53-21.13 3.96-23.32L3.96-23.32L3.96-23.32Q5.38-25.51 7.73-26.90L7.73-26.90L7.73-26.90Q10.08-28.29 13.14-28.29L13.14-28.29L13.14-28.29Q18.40-23.14 25.71-23.14L25.71-23.14L25.71-23.14Q33.03-23.14 38.29-28.29L38.29-28.29L38.29-28.29Q41.34-28.29 43.69-26.90L43.69-26.90L43.69-26.90Q46.04-25.51 47.47-23.32L47.47-23.32L47.47-23.32Q48.90-21.13 49.82-18.06L49.82-18.06L49.82-18.06Q50.75-14.99 51.09-11.95L51.09-11.95L51.09-11.95Q51.43-8.92 51.43-5.50ZM36.62-52.05L36.62-52.05L36.62-52.05Q41.14-47.53 41.14-41.14L41.14-41.14L41.14-41.14Q41.14-34.75 36.62-30.23L36.62-30.23L36.62-30.23Q32.10-25.71 25.71-25.71L25.71-25.71L25.71-25.71Q19.33-25.71 14.81-30.23L14.81-30.23L14.81-30.23Q10.29-34.75 10.29-41.14L10.29-41.14L10.29-41.14Q10.29-47.53 14.81-52.05L14.81-52.05L14.81-52.05Q19.33-56.57 25.71-56.57L25.71-56.57L25.71-56.57Q32.10-56.57 36.62-52.05Z"/></svg>') no-repeat center;
    background-size: contain;
}
.svg-lock::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="46.28571428571428" height="56.57142857142857" fill="gray" viewBox="0 -56.57142857142857 46.28571428571428 56.57142857142857"><path d="M12.86-38.57L12.86-30.86L33.43-30.86L33.43-38.57L33.43-38.57Q33.43-42.83 30.42-45.84L30.42-45.84L30.42-45.84Q27.40-48.86 23.14-48.86L23.14-48.86L23.14-48.86Q18.88-48.86 15.87-45.84L15.87-45.84L15.87-45.84Q12.86-42.83 12.86-38.57L12.86-38.57ZM46.29-27.00L46.29-27.00L46.29-3.86L46.29-3.86Q46.29-2.25 45.16-1.13L45.16-1.13L45.16-1.13Q44.04 0 42.43 0L42.43 0L3.86 0L3.86 0Q2.25 0 1.13-1.13L1.13-1.13L1.13-1.13Q0-2.25 0-3.86L0-3.86L0-27.00L0-27.00Q0-28.61 1.13-29.73L1.13-29.73L1.13-29.73Q2.25-30.86 3.86-30.86L3.86-30.86L5.14-30.86L5.14-38.57L5.14-38.57Q5.14-45.96 10.45-51.27L10.45-51.27L10.45-51.27Q15.75-56.57 23.14-56.57L23.14-56.57L23.14-56.57Q30.54-56.57 35.84-51.27L35.84-51.27L35.84-51.27Q41.14-45.96 41.14-38.57L41.14-38.57L41.14-30.86L42.43-30.86L42.43-30.86Q44.04-30.86 45.16-29.73L45.16-29.73L45.16-29.73Q46.29-28.61 46.29-27.00Z"/></svg>') no-repeat center;
    background-size: contain;
}
.svg-eye-slash::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="72" height="53.99999999999999" fill="gray" viewBox="0 -50.14285714285714 72 53.99999999999999"><path d="M22.30-8.08L22.30-8.08L25.43-13.74L25.43-13.74Q21.94-16.27 19.97-20.13L19.97-20.13L19.97-20.13Q18-23.99 18-28.29L18-28.29L18-28.29Q18-33.15 20.45-37.33L20.45-37.33L20.45-37.33Q11.25-32.63 5.14-23.14L5.14-23.14L5.14-23.14Q11.85-12.78 22.30-8.08ZM37.37-37.21L37.37-37.21L37.37-37.21Q37.93-37.77 37.93-38.57L37.93-38.57L37.93-38.57Q37.93-39.37 37.37-39.94L37.37-39.94L37.37-39.94Q36.80-40.50 36-40.50L36-40.50L36-40.50Q30.98-40.50 27.38-36.90L27.38-36.90L27.38-36.90Q23.79-33.31 23.79-28.29L23.79-28.29L23.79-28.29Q23.79-27.48 24.35-26.92L24.35-26.92L24.35-26.92Q24.91-26.36 25.71-26.36L25.71-26.36L25.71-26.36Q26.52-26.36 27.08-26.92L27.08-26.92L27.08-26.92Q27.64-27.48 27.64-28.29L27.64-28.29L27.64-28.29Q27.64-31.74 30.09-34.19L30.09-34.19L30.09-34.19Q32.54-36.64 36-36.64L36-36.64L36-36.64Q36.80-36.64 37.37-37.21ZM52.51-46.25L52.51-46.25L52.51-46.25Q52.51-45.96 52.47-45.88L52.47-45.88L52.47-45.88Q48.21-38.29 39.78-23.10L39.78-23.10L39.78-23.10Q31.34-7.92 27.12-0.36L27.12-0.36L25.15 3.21L25.15 3.21Q24.75 3.86 24.03 3.86L24.03 3.86L24.03 3.86Q23.54 3.86 18.64 1.04L18.64 1.04L18.64 1.04Q18 0.64 18-0.08L18-0.08L18-0.08Q18-0.56 19.77-3.58L19.77-3.58L19.77-3.58Q14.02-6.19 9.18-10.53L9.18-10.53L9.18-10.53Q4.34-14.87 0.80-20.37L0.80-20.37L0.80-20.37Q0-21.62 0-23.14L0-23.14L0-23.14Q0-24.67 0.80-25.92L0.80-25.92L0.80-25.92Q6.95-35.36 16.07-40.82L16.07-40.82L16.07-40.82Q25.19-46.29 36-46.29L36-46.29L36-46.29Q39.58-46.29 43.23-45.60L43.23-45.60L45.40-49.50L45.40-49.50Q45.80-50.14 46.53-50.14L46.53-50.14L46.53-50.14Q46.73-50.14 47.25-49.90L47.25-49.90L47.25-49.90Q47.77-49.66 48.50-49.28L48.50-49.28L48.50-49.28Q49.22-48.90 49.82-48.54L49.82-48.54L49.82-48.54Q50.42-48.17 51.09-47.79L51.09-47.79L51.09-47.79Q51.75-47.41 51.87-47.33L51.87-47.33L51.87-47.33Q52.51-46.93 52.51-46.25ZM54.00-28.29L54.00-28.29L54.00-28.29Q54.00-22.70 50.83-18.10L50.83-18.10L50.83-18.10Q47.65-13.50 42.43-11.49L42.43-11.49L53.68-31.66L53.68-31.66Q54.00-29.85 54.00-28.29ZM71.20-25.92L71.20-25.92Q72-24.55 72-23.14L72-23.14L72-23.14Q72-21.74 71.20-20.37L71.20-20.37L71.20-20.37Q69.63-17.80 66.82-14.54L66.82-14.54L66.82-14.54Q60.79-7.63 52.85-3.82L52.85-3.82L52.85-3.82Q44.92 0 36 0L36 0L38.97-5.30L38.97-5.30Q47.49-6.03 54.74-10.81L54.74-10.81L54.74-10.81Q62.00-15.59 66.86-23.14L66.86-23.14L66.86-23.14Q62.24-30.33 55.53-34.96L55.53-34.96L58.06-39.46L58.06-39.46Q61.87-36.88 65.39-33.31L65.39-33.31L65.39-33.31Q68.91-29.73 71.20-25.92L71.20-25.92Z"/></svg>') no-repeat center;
    background-size: contain;
}
.svg-eye::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="72" height="46.28571428571428" fill="gray" viewBox="0 -46.28571428571428 72 46.28571428571428"><path d="M66.86-23.14L66.86-23.14L66.86-23.14Q60.75-32.63 51.55-37.33L51.55-37.33L51.55-37.33Q54.00-33.15 54.00-28.29L54.00-28.29L54.00-28.29Q54.00-20.85 48.72-15.57L48.72-15.57L48.72-15.57Q43.43-10.29 36-10.29L36-10.29L36-10.29Q28.57-10.29 23.28-15.57L23.28-15.57L23.28-15.57Q18-20.85 18-28.29L18-28.29L18-28.29Q18-33.15 20.45-37.33L20.45-37.33L20.45-37.33Q11.25-32.63 5.14-23.14L5.14-23.14L5.14-23.14Q10.49-14.91 18.54-10.02L18.54-10.02L18.54-10.02Q26.60-5.14 36-5.14L36-5.14L36-5.14Q45.40-5.14 53.46-10.02L53.46-10.02L53.46-10.02Q61.51-14.91 66.86-23.14ZM37.37-37.21L37.37-37.21L37.37-37.21Q37.93-37.77 37.93-38.57L37.93-38.57L37.93-38.57Q37.93-39.37 37.37-39.94L37.37-39.94L37.37-39.94Q36.80-40.50 36-40.50L36-40.50L36-40.50Q30.98-40.50 27.38-36.90L27.38-36.90L27.38-36.90Q23.79-33.31 23.79-28.29L23.79-28.29L23.79-28.29Q23.79-27.48 24.35-26.92L24.35-26.92L24.35-26.92Q24.91-26.36 25.71-26.36L25.71-26.36L25.71-26.36Q26.52-26.36 27.08-26.92L27.08-26.92L27.08-26.92Q27.64-27.48 27.64-28.29L27.64-28.29L27.64-28.29Q27.64-31.74 30.09-34.19L30.09-34.19L30.09-34.19Q32.54-36.64 36-36.64L36-36.64L36-36.64Q36.80-36.64 37.37-37.21ZM71.20-25.92L71.20-25.92Q72-24.51 72-23.14L72-23.14L72-23.14Q72-21.78 71.20-20.37L71.20-20.37L71.20-20.37Q65.57-11.13 56.07-5.56L56.07-5.56L56.07-5.56Q46.57 0 36 0L36 0L36 0Q25.43 0 15.93-5.58L15.93-5.58L15.93-5.58Q6.43-11.17 0.80-20.37L0.80-20.37L0.80-20.37Q0-21.78 0-23.14L0-23.14L0-23.14Q0-24.51 0.80-25.92L0.80-25.92L0.80-25.92Q6.43-35.12 15.93-40.70L15.93-40.70L15.93-40.70Q25.43-46.29 36-46.29L36-46.29L36-46.29Q46.57-46.29 56.07-40.70L56.07-40.70L56.07-40.70Q65.57-35.12 71.20-25.92L71.20-25.92Z"/></svg>') no-repeat center;
    background-size: contain;
}
.svg-exclamation-circle::before {
    content: '';
    display: flex;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="61.71428571428571" height="61.71428571428571" fill="orange" viewBox="0 -56.57142857142857 61.71428571428571 61.71428571428571"><path d="M15.37-52.43L15.37-52.43L15.37-52.43Q22.46-56.57 30.86-56.57L30.86-56.57L30.86-56.57Q39.25-56.57 46.35-52.43L46.35-52.43L46.35-52.43Q53.44-48.29 57.58-41.20L57.58-41.20L57.58-41.20Q61.71-34.11 61.71-25.71L61.71-25.71L61.71-25.71Q61.71-17.32 57.58-10.23L57.58-10.23L57.58-10.23Q53.44-3.13 46.35 1.00L46.35 1.00L46.35 1.00Q39.25 5.14 30.86 5.14L30.86 5.14L30.86 5.14Q22.46 5.14 15.37 1.00L15.37 1.00L15.37 1.00Q8.28-3.13 4.14-10.23L4.14-10.23L4.14-10.23Q0-17.32 0-25.71L0-25.71L0-25.71Q0-34.11 4.14-41.20L4.14-41.20L4.14-41.20Q8.28-48.29 15.37-52.43ZM36-6.47L36-6.47L36-14.10L36-14.10Q36-14.67 35.64-15.05L35.64-15.05L35.64-15.05Q35.28-15.43 34.75-15.43L34.75-15.43L27.04-15.43L27.04-15.43Q26.52-15.43 26.12-15.03L26.12-15.03L26.12-15.03Q25.71-14.62 25.71-14.10L25.71-14.10L25.71-6.47L25.71-6.47Q25.71-5.95 26.12-5.54L26.12-5.54L26.12-5.54Q26.52-5.14 27.04-5.14L27.04-5.14L34.75-5.14L34.75-5.14Q35.28-5.14 35.64-5.52L35.64-5.52L35.64-5.52Q36-5.91 36-6.47ZM35.92-20.29L35.92-20.29L36.64-45.24L36.64-45.24Q36.64-45.72 36.24-45.96L36.24-45.96L36.24-45.96Q35.84-46.29 35.28-46.29L35.28-46.29L26.44-46.29L26.44-46.29Q25.87-46.29 25.47-45.96L25.47-45.96L25.47-45.96Q25.07-45.72 25.07-45.24L25.07-45.24L25.75-20.29L25.75-20.29Q25.75-19.89 26.16-19.59L26.16-19.59L26.16-19.59Q26.56-19.29 27.12-19.29L27.12-19.29L34.55-19.29L34.55-19.29Q35.12-19.29 35.50-19.59L35.50-19.59L35.50-19.59Q35.88-19.89 35.92-20.29Z"/></svg>') no-repeat center;
    background-size: contain;
}
.svg-sign-in::before {
    content: '';
    display: flex;
    width: 14px;
    height: 14px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="61.71428571428571" height="51.42857142857142" fill="white" viewBox="0 -51.42857142857142 61.71428571428571 51.42857142857142"><path d="M46.81-27.52L46.81-27.52Q47.57-26.76 47.57-25.71L47.57-25.71L47.57-25.71Q47.57-24.67 46.81-23.91L46.81-23.91L24.95-2.05L24.95-2.05Q24.19-1.29 23.14-1.29L23.14-1.29L23.14-1.29Q22.10-1.29 21.33-2.05L21.33-2.05L21.33-2.05Q20.57-2.81 20.57-3.86L20.57-3.86L20.57-15.43L2.57-15.43L2.57-15.43Q1.53-15.43 0.76-16.19L0.76-16.19L0.76-16.19Q0-16.96 0-18L0-18L0-33.43L0-33.43Q0-34.47 0.76-35.24L0.76-35.24L0.76-35.24Q1.53-36 2.57-36L2.57-36L20.57-36L20.57-47.57L20.57-47.57Q20.57-48.62 21.33-49.38L21.33-49.38L21.33-49.38Q22.10-50.14 23.14-50.14L23.14-50.14L23.14-50.14Q24.19-50.14 24.95-49.38L24.95-49.38L46.81-27.52ZM61.71-39.86L61.71-39.86L61.71-11.57L61.71-11.57Q61.71-6.79 58.32-3.40L58.32-3.40L58.32-3.40Q54.92 0 50.14 0L50.14 0L37.29 0L37.29 0Q36.76 0 36.38-0.38L36.38-0.38L36.38-0.38Q36-0.76 36-1.29L36-1.29L36-1.29Q36-1.45 35.96-2.09L35.96-2.09L35.96-2.09Q35.92-2.73 35.94-3.15L35.94-3.15L35.94-3.15Q35.96-3.58 36.06-4.10L36.06-4.10L36.06-4.10Q36.16-4.62 36.46-4.88L36.46-4.88L36.46-4.88Q36.76-5.14 37.29-5.14L37.29-5.14L50.14-5.14L50.14-5.14Q52.79-5.14 54.68-7.03L54.68-7.03L54.68-7.03Q56.57-8.92 56.57-11.57L56.57-11.57L56.57-39.86L56.57-39.86Q56.57-42.51 54.68-44.40L54.68-44.40L54.68-44.40Q52.79-46.29 50.14-46.29L50.14-46.29L38.57-46.29L38.57-46.29Q38.53-46.29 38.13-46.29L38.13-46.29L38.13-46.29Q37.73-46.29 37.61-46.29L37.61-46.29L37.61-46.29Q37.49-46.29 37.15-46.33L37.15-46.33L37.15-46.33Q36.80-46.37 36.68-46.45L36.68-46.45L36.68-46.45Q36.56-46.53 36.36-46.67L36.36-46.67L36.36-46.67Q36.16-46.81 36.08-47.03L36.08-47.03L36.08-47.03Q36-47.25 36-47.57L36-47.57L36-47.57Q36-47.73 35.96-48.37L35.96-48.37L35.96-48.37Q35.92-49.02 35.94-49.44L35.94-49.44L35.94-49.44Q35.96-49.86 36.06-50.38L36.06-50.38L36.06-50.38Q36.16-50.91 36.46-51.17L36.46-51.17L36.46-51.17Q36.76-51.43 37.29-51.43L37.29-51.43L50.14-51.43L50.14-51.43Q54.92-51.43 58.32-48.03L58.32-48.03L58.32-48.03Q61.71-44.64 61.71-39.86Z"/></svg>') no-repeat center;
    background-size: contain;
}
@keyframes rotate-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.rotate-loading {
    width: 16px;
    height: 16px;
    display: flex;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(200, 200, 200, 0.5);
    border-top: 2px solid black;
    animation: rotate-loading 1s linear infinite;
}