/* ===================================================
   E-PKL 2026 - GLASSMORPHISM STYLING (LOCAL OFFLINE)
   =================================================== */

:root {
    --primary-blue: #0066ff;
    --primary-yellow: #f1b700;
    --bg-light: #f0f4f9;
    --card-glass: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 8px 32px 0 rgba(0, 102, 255, 0.1);
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(135deg, #e0ebff 0%, #f7f9fc 50%, #fff6d6 100%);
    min-height: 100vh;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 80px; /* Ruang untuk Bottom Navbar */
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Container HP / Main Wrapper */
.app-container {
    width: 100%;
    max-width: 480px;
    padding: 16px;
}

/* Glassmorphism Card Basis */
.card-glass {
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
}

/* Page Login Specific */
.login-container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    margin-top: 40px;
}

.logo-wrapper {
    margin-bottom: 16px;
}

.main-logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.welcome-text {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.app-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

/* Form Styles */
.form-group {
    text-align: left;
    margin-bottom: 16px;
}

.label-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.select-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 12px;
}

.select-box select {
    width: 100%;
    padding: 14px 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    appearance: none;
}

.icon-user, .icon-arrow {
    font-size: 16px;
    color: var(--text-muted);
}

.warning-text {
    font-size: 11px;
    font-weight: 700;
    color: #d97706;
    margin: 16px 0;
}

/* Custom Buttons */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-blue), #0044cc);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Header Component */
.header-app {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.header-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
}

.app-subbrand {
    font-size: 10px;
    color: var(--text-muted);
}

/* Bottom Nav Component */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 999;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-item.active {
    color: var(--primary-blue);
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
}