@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
}

/* Desain Halaman Login */
.login-bg {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
}

/* Desain Sidebar Dashboard */
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #2c3e50;
    color: #fff;
    min-height: 100vh;
    transition: all 0.3s;
}
#sidebar .sidebar-header {
    padding: 20px;
    background: #1a252f;
    text-align: center;
}
#sidebar ul.components {
    padding: 20px 0;
}
#sidebar ul li a {
    padding: 15px 20px;
    font-size: 1.05em;
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    transition: 0.3s;
}
#sidebar ul li a:hover {
    color: #2c3e50;
    background: #ecf0f1;
}
#sidebar ul li.active > a {
    color: #fff;
    background: #3498db;
    border-left: 4px solid #ecf0f1;
}

/* Area Konten Utama */
#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
}