/* NAVBAR */
.custom-navbar {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 14px 0;
}

.custom-navbar .login-link {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

/* BACKGROUND */
body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* LOGIN WRAPPER */
.login-wrapper {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
}

/* LOGIN CARD */
.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 460px;
}

/* FORM */
.login-card label {
    font-weight: 600;
    margin-bottom: 6px;
}

.login-card input {
    padding: 12px;
    border-radius: 8px;
}

/* BUTTON */
.login-card .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    padding: 12px;
    font-weight: 600;
}

.login-card .btn-primary:hover {
    box-shadow: 0 12px 25px rgba(37,99,235,0.35);
}

/* LINKS */
.forgot-link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.ka-navbar {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.brand-circle {
    background: #3b82f6;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #e5e7eb !important;
    padding: 8px 14px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #60a5fa !important;
}

.dropdown-menu {
    border-radius: 12px;
}

.dropdown-item {
    padding: 8px 16px;
}

.dropdown-item:hover {
    background-color: #2563eb;
    color: #fff;
}

.user-chip {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
}

.large-dropdown {
    min-width: 230px;
}

