/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* ================= LOGIN ================= */
body.login-page {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    height: 100vh;
}

.login-box {
    max-width: 900px;
    margin: auto;
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    transition: 0.3s;
}

.login-box:hover {
    transform: scale(1.01);
}

.left {
    background: #0f4c75;
    color: white;
    padding: 40px;
    width: 50%;
    position: relative;
}

.left h2 {
    font-weight: bold;
}

.circle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.circle1 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.circle2 {
    width: 100px;
    height: 100px;
    top: 50px;
    right: 30px;
}

.right {
    background: #fff;
    padding: 40px;
    width: 50%;
}

.form-control {
    border-radius: 10px;
}

.btn-login {
    background: #0f4c75;
    color: white;
    border-radius: 10px;
}

.btn-login:hover {
    background: #3282b8;
}

/* ================= DASHBOARD ================= */

/* background dashboard */
body.dashboard-page {
    background: #f4f7fe;
}

/* sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    background: #0f4c75;
    color: white;
    padding: 20px;
}

.sidebar a {
    display: block;
    color: white;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 10px;
}

.sidebar a:hover {
    background: #3282b8;
}

/* content */
.content {
    margin-left: 260px;
    padding: 20px;
}

/* card */
.card-box {
    background: #0f4c75;
    color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.card-box:hover {
    transform: translateY(-5px);
}

.card-title {
    margin-top: 10px;
    font-size: 14px;
}

/* notif */
.notif-box {
    border: 2px dashed #0f4c75;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.notif-header {
    background: #0f4c75;
    color: white;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 15px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: #4e73df;
    color: white;
    padding: 10px;
}

.table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.table tr:hover {
    background: #f5f5f5;
}

table {
    font-size: 14px;
}

.table th {
    text-align: center;
}

.table td {
    vertical-align: middle;
}