﻿
* {
    font-family: 'Inter', sans-serif;
}

body {
    background: #f1f5f9;
}

/* ── Login ── */
#login-view {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    display: flex;
}

.login-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

    .login-left .circle {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.1);
    }

.login-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,.3);
    width: 100%;
    max-width: 420px;
}

.login-card-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    padding: 28px 32px;
}

.login-card-body {
    padding: 28px 32px;
}

.login-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px 10px 36px;
    width: 100%;
    font-size: 14px;
    transition: all .2s;
    outline: none;
}

    .login-input:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59,130,246,.15);
    }

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.btn-admin {
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s;
    width: 100%;
}

    .btn-admin:hover {
        background: #2563eb;
        transform: translateY(-1px);
    }

.btn-lecturer {
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s;
    width: 100%;
}

    .btn-lecturer:hover {
        background: #0f172a;
        transform: translateY(-1px);
    }

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .login-left {
        display: none !important;
    }
}
