* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    background: #f4f6f9;
}

/* NAVBAR */
.navbar {
    background: #1f4fa3;
    color: white;
    padding: 15px 30px;
}

.nav-title {
    font-size: 20px;
    font-weight: 600;
}

.nav-subtitle {
    font-size: 13px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.page-title {
    color: #1f4fa3;
    margin-bottom: 25px;
}

/* FORM */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-col {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    margin-bottom: 24px;
}

.form-row label {
    font-weight: 500;
    color: #444;
}

.form-row input,
.form-row select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-row.full {
    grid-column: 1 / -1;
    justify-content: center;
}

/* CARD */
.card {
    background: #f9fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background: #1f4fa3;
    color: white;
    padding: 12px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* BUTTON */
button {
    background: #1f4fa3;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #f4f6f9;
}

* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* ================= LOGIN ================= */
.login-wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* PUTIH BERSIH SEPERTI SS */
}

.login-card {
    width: 360px;
    padding: 28px 30px 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.login-header {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #4f46e5; /* BIRU UNGU SEPERTI SS */
    margin-bottom: 22px;
}

/* ================= FORM ================= */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #4f46e5;
}

/* ================= BUTTON ================= */
.btn-login {
    width: 100%;
    height: 36px;
    margin-top: 10px;
    background: #4f46e5; /* UNGU */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-login:hover {
    background: #4338ca;
}
