﻿/* ===== BASE & INDEX STYLES ===== */

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --sidebar-w: 260px;
    --header-h: 64px;
}

body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    background-color: var(--bg-light);
    color: #334155;
    margin: 0;
    overflow-x: hidden;
    display: flex;
    height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: var(--sidebar-w);
    background-color: var(--dark);
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    z-index: 1000;
}
.sidebar-header {
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}
.sidebar-header:hover { color: #fff; text-decoration: none; }
.sidebar-header i { color: var(--primary); margin-right: 12px; font-size: 1.5rem; }

.nav-menu { padding: 20px 0; list-style: none; margin: 0; flex: 1; }
.nav-item { margin-bottom: 4px; padding: 0 16px; }
.nav-link {
    display: flex; align-items: center;
    padding: 12px 16px; border-radius: 8px;
    color: #cbd5e1; text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}
.nav-link i { width: 24px; font-size: 1.1rem; margin-right: 12px; text-align: center; }
.nav-link:hover { background-color: rgba(255,255,255,0.05); color: #fff; text-decoration: none; }
.nav-link.active { background-color: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3); }
.nav-title { padding: 12px 32px 4px; font-size: 0.75rem; text-transform: uppercase; color: #64748b; font-weight: 700; letter-spacing: 1px;}

/* ===== MAIN CONTENT ===== */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100vh;
}

/* Header */
.top-header {
    height: var(--header-h);
    background-color: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    z-index: 10;
}
.header-title { font-size: 1.25rem; font-weight: 600; margin: 0; }
.user-profile { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.user-info { display: flex; flex-direction: column; }
.user-name { font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.user-dept { font-size: 0.75rem; color: var(--secondary); }

/* Content Area */
.content-area {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Status Cards */
.status-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.status-card {
    background: #fff; border-radius: 16px; padding: 24px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.status-card:hover { transform: translateY(-2px); }
.status-info h3 { font-size: 0.875rem; color: var(--secondary); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.status-info .value { font-size: 2.5rem; font-weight: 700; color: var(--dark); line-height: 1; margin:0; }
.status-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }

.card-req .status-icon { background: #fef3c7; color: #d97706; }
.card-prog .status-icon { background: #e0e7ff; color: #4f46e5; }
.card-req .value { color: #d97706; }
.card-prog .value { color: #4f46e5; }

/* Split View: Map & List */
.split-view {
    display: flex;
    flex: 1;
    gap: 24px;
    min-height: 500px;
}

.map-section, .list-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.map-section { flex: 3; position: relative; }
.list-section { flex: 2; }

.section-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.section-title { font-size: 1.1rem; font-weight: 600; margin: 0; display: flex; align-items: center; gap: 8px; }

/* Map UI */
.map-container { flex: 1; background: #e2e8f0; position: relative; }
.map-search-box {
    position: absolute; top: 16px; left: 16px; right: 16px; z-index: 10;
    display: flex; gap: 8px;
}
.map-search-box input {
    flex: 1; padding: 12px 20px; border-radius: 12px; border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.95rem; outline: none;
}
.map-search-box button {
    padding: 0 20px; border-radius: 12px; border: none; background: var(--primary); color: white;
    box-shadow: 0 4px 15px rgba(79,70,229,0.3); cursor: pointer; transition: 0.2s;
}
.map-search-box button:hover { background: var(--primary-hover); }

/* Dummy Marker */
.dummy-marker {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; background: var(--danger); border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4); cursor: pointer; animation: bounce 2s infinite;
}
.dummy-marker::after {
    content: ''; width: 14px; height: 14px; background: white; border-radius: 50%;
}
@keyframes bounce { 0%, 100% { top: 50%; } 50% { top: 48%; } }

/* List UI */
.nav-tabs-custom {
    display: flex; padding: 0 20px; background: #fff; border-bottom: 1px solid var(--border);
}
.nav-tabs-custom .tab-btn {
    padding: 16px 20px; border: none; background: none; font-weight: 600; color: var(--secondary);
    cursor: pointer; border-bottom: 3px solid transparent; font-size: 0.95rem;
}
.nav-tabs-custom .tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.list-content { flex: 1; overflow-y: auto; padding: 16px; background: #f8fafc; }

.list-item {
    background: #fff; border-radius: 12px; padding: 16px; margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02); border: 1px solid var(--border);
    cursor: pointer; transition: 0.2s; display: flex; gap: 16px;
}
.list-item:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.item-thumb { width: 80px; height: 80px; border-radius: 8px; background: #cbd5e1; object-fit: cover; }
.item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.item-header { display: flex; justify-content: space-between; align-items: flex-start; }
.item-badge { padding: 4px 8px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; }
.badge-req { background: #fef3c7; color: #d97706; }
.badge-prog { background: #e0e7ff; color: #4f46e5; }

.item-address { font-weight: 600; font-size: 0.95rem; margin: 8px 0 4px; color: var(--dark); }
.item-date { font-size: 0.75rem; color: var(--secondary); display: flex; align-items: center; gap: 4px; }

/* Popup Info Window (Mock) */
.map-popup {
    position: absolute; top: 35%; left: 55%; background: white; border-radius: 12px;
    width: 280px; padding: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none; z-index: 20; border: 1px solid var(--border);
}
.map-popup.show { display: block; animation: fadeIn 0.2s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.popup-close { position: absolute; top: 12px; right: 12px; cursor: pointer; color: var(--secondary); }
.popup-title { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.popup-address { font-size: 0.85rem; color: var(--secondary); margin-bottom: 12px; }
.popup-btn {
    width: 100%; padding: 8px; background: var(--primary); color: white; border: none;
    border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.popup-btn:hover { background: var(--primary-hover); }

/* Responsive */
@media (max-width: 992px) {
    .split-view { flex-direction: column; }
    .map-section { min-height: 400px; }
    .list-section { min-height: 500px; }
}
    /* Mobile Responsive */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.25rem; color: var(--dark); cursor: pointer; margin-right: 12px; }
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .sidebar { position: fixed; left: -260px; height: 100%; transition: 0.3s; z-index: 1050; }
    .sidebar.show { left: 0; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
    .content-area { flex-direction: column !important; gap: 16px; }
    .board-column { flex: none; width: 100%; min-height: 400px; max-height: 500px; }
    .split-view, .split-section { flex-direction: column; }
    .work-modal-body { flex-direction: column; min-height: auto; }
    .work-modal-right { padding-top: 0; }
    .user-info { display: none; }
    .header-title-wrapper { display: flex; align-items: center; }
}
    /* Dark Mode Overrides */
body.dark-mode { background-color: #0f172a; color: #e2e8f0; }
body.dark-mode .top-header,
body.dark-mode .status-card,
body.dark-mode .map-section,
body.dark-mode .section-header,
body.dark-mode .list-section,
body.dark-mode .nav-tabs-custom,
body.dark-mode .list-item,
body.dark-mode .board-column,
body.dark-mode .kanban-card,
body.dark-mode .work-modal-left,
body.dark-mode .work-form-section,
body.dark-mode .tl-content,
body.dark-mode .grid-section,
body.dark-mode .split-card { background: #1e293b; border-color: #334155; color: #e2e8f0; }
body.dark-mode .sidebar { background-color: #0b1120; }
body.dark-mode .item-address, body.dark-mode .card-title, body.dark-mode .info-value, body.dark-mode .tl-body, body.dark-mode .section-title { color: #f8fafc; }
body.dark-mode .list-content, body.dark-mode .work-modal-body, body.dark-mode .search-row, body.dark-mode .upload-box { background: #0f172a; }
body.dark-mode .top-header, body.dark-mode .status-card { border-color: #334155; }
body.dark-mode .kanban-card:hover, body.dark-mode .list-item:hover { border-color: var(--primary); }
body.dark-mode .column-header { border-bottom-color: #334155; }
body.dark-mode .column-header.req { background: #451a03; color: #fde68a; }
body.dark-mode .column-header.prog { background: #1e1b4b; color: #c7d2fe; }
body.dark-mode .item-badge.badge-req { background: #451a03; color: #fde68a; }
body.dark-mode .item-badge.badge-prog { background: #1e1b4b; color: #c7d2fe; }
body.dark-mode .map-popup { background: #1e293b; border-color: #334155; }
body.dark-mode .popup-title { color: #f8fafc; }
body.dark-mode .search-input { background: #0f172a; color: #fff; border-color: #334155; }
body.dark-mode .mobile-menu-btn { color: #fff; }
body.dark-mode .dx-datagrid { color: #e2e8f0; background-color: #1e293b; }
body.dark-mode .dx-datagrid-headers { background-color: #0f172a; color: #e2e8f0; border-bottom: 1px solid #334155 !important; }
body.dark-mode .dx-datagrid .dx-row > td { border-bottom: 1px solid #334155; }
body.dark-mode .dx-datagrid-hover-bg { background-color: #334155; }
body.dark-mode .modal-content { background: #1e293b; }
body.dark-mode .modal-header { background: #0b1120 !important; }

/* ===== WORK LIST STYLES ===== */

.content-area { flex: 1; padding: 24px; overflow-y: auto; display: flex; gap: 24px; }
.board-column { flex: 1; background: #e2e8f0; border-radius: 12px; display: flex; flex-direction: column; max-height: 100%; overflow: hidden; }
.column-header { padding: 16px; font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid rgba(0,0,0,0.05); }
.column-header.req { background: #fef3c7; color: #b45309; }
.column-header.prog { background: #e0e7ff; color: #3730a3; }
.column-count { background: rgba(0,0,0,0.1); padding: 2px 10px; border-radius: 20px; font-size: 0.85rem; }
.column-body { padding: 16px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 16px; }

/* Kanban Card */
.kanban-card { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); cursor: pointer; transition: 0.2s; border: 1px solid transparent; }
.kanban-card:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); border-color: var(--primary); }
.card-img { width: 100%; height: 140px; border-radius: 8px; object-fit: cover; margin-bottom: 12px; background: #f1f5f9; }
.card-title { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.card-address { font-size: 0.85rem; color: var(--secondary); margin-bottom: 12px; line-height: 1.4; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--border); padding-top: 12px; font-size: 0.8rem; color: var(--secondary); }

/* ===== MODAL (TIMELINE & WORK LOG) ===== */
.modal-xl-custom { max-width: 1100px; }
.work-modal-body { display: flex; padding: 0; min-height: 600px; background: var(--bg-light); }

.work-modal-left { flex: 1; background: #fff; padding: 24px; border-right: 1px solid var(--border); }
.work-modal-right { flex: 1.2; display: flex; flex-direction: column; }

/* Left: Info */
.info-label { font-size: 0.8rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.info-value { font-size: 1rem; font-weight: 500; color: var(--dark); margin-bottom: 20px; }
.info-img { width: 100%; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

/* Right: Timeline & Form */
.work-form-section { padding: 24px; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 4px 10px rgba(0,0,0,0.02); z-index: 5; }
.timeline-section { padding: 24px; flex: 1; overflow-y: auto; }

/* Form UI */
.status-btn-group { display: flex; gap: 10px; margin-bottom: 16px; }
.status-btn { flex: 1; padding: 10px; border: 1px solid var(--border); background: #fff; border-radius: 8px; font-weight: 600; color: var(--secondary); cursor: pointer; transition: 0.2s; text-align: center; }
.status-btn.selected { background: var(--primary); color: white; border-color: var(--primary); }
.status-btn.complete.selected { background: var(--success); border-color: var(--success); }

.upload-box { border: 2px dashed var(--border); border-radius: 8px; padding: 20px; text-align: center; color: var(--secondary); cursor: pointer; transition: 0.2s; margin-bottom: 16px; background: #f8fafc; }
.upload-box:hover { border-color: var(--primary); color: var(--primary); background: #e0e7ff; }
.upload-box i { font-size: 2rem; margin-bottom: 8px; }

/* Timeline UI */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 24px; }
.tl-dot { position: absolute; left: -30px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--border); z-index: 2; }
.tl-dot.req { background: var(--warning); }
.tl-dot.prog { background: var(--primary); }
.tl-dot.comp { background: var(--success); }

.tl-content { background: #fff; border-radius: 12px; padding: 16px; border: 1px solid var(--border); box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.tl-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tl-status { font-weight: 700; font-size: 0.9rem; }
.tl-time { font-size: 0.75rem; color: var(--secondary); }
.tl-body { font-size: 0.9rem; color: var(--dark); line-height: 1.5; }
.tl-img-row { display: flex; gap: 8px; margin-top: 12px; }
.tl-img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; cursor: pointer; }

/* ===== WORK COMPLETE STYLES ===== */

.content-area { flex: 1; padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 24px; }

.grid-section { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); border: 1px solid var(--border); }
.split-section { display: flex; gap: 24px; flex: 1; min-height: 400px; }
.split-card { flex: 1; background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); border: 1px solid var(--border); display: flex; flex-direction: column; }

.section-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; color: var(--dark); }

/* Form row for search */
.search-row { display: flex; gap: 16px; margin-bottom: 16px; align-items: center; background: #f8fafc; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--border); }
.search-input { padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9rem; width: 200px; }
.search-btn { background: var(--primary); color: white; border: none; padding: 8px 16px; border-radius: 6px; font-weight: 600; }

/* Timeline in Detail View */
.timeline { position: relative; padding-left: 20px; margin-top: 16px; flex: 1; overflow-y: auto; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 16px; }
.tl-dot { position: absolute; left: -20px; width: 12px; height: 12px; border-radius: 50%; background: var(--success); border: 2px solid #fff; z-index: 2; box-shadow: 0 0 0 1px var(--border); }
.tl-dot.start { background: var(--warning); }
.tl-header { font-weight: 600; font-size: 0.9rem; }
.tl-time { font-size: 0.75rem; color: var(--secondary); margin-left: 8px; }
.tl-body { font-size: 0.85rem; color: var(--dark); margin-top: 4px; }

#mapPlaceholder { background: url('https://map.vworld.kr/images/vmap_bg.png') center/cover; flex: 1; border-radius: 8px; opacity: 0.8; position: relative; }
.marker { position: absolute; top: 50%; left: 50%; color: var(--danger); font-size: 2rem; transform: translate(-50%, -100%); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

/* DevExtreme Overrides */
.dx-datagrid-headers { border-bottom: 2px solid #cbd5e1 !important; }
.dx-datagrid-content .dx-row > td { vertical-align: middle; }

/* ===== LOGIN STYLES ===== */

:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --dark: #0f172a;
    --text-main: #f8fafc;
    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

body, html {
    margin: 0; padding: 0;
    height: 100%; width: 100%;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.02em;
    background-color: #000;
}

/* Beautiful Background */
.login-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    /* High-quality road/city background with dark gradient overlay */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%),
                url('../img/pothole-bg.png') center/cover no-repeat;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Glassmorphism Login Card */
.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    color: var(--text-main);
    text-align: center;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

/* Form Inputs */
.input-group {
    position: relative;
    margin-bottom: 16px;
    text-align: left;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s;
    box-sizing: border-box;
    outline: none;
}

.form-control::placeholder {
    color: #64748b;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.form-control:focus + i, .form-control:not(:placeholder-shown) + i {
    color: var(--primary);
}

/* Options Row */
.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-wrapper input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #64748b;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-wrapper input:checked + .custom-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input:checked + .custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: white;
}

/* Submit Button */
.btn-login {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
    border: none;
    border-radius: 16px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
}

.btn-login:active {
    transform: scale(0.97);
}

.footer-text {
    margin-top: 32px;
    font-size: 0.8rem;
    color: #64748b;
}


