/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000;
}

/* =====================
HEADER & NAVIGATION
  ===================== */
header {
    background-color: #004d26;
    padding: 0;
}

header .top-banner {
    background-color: #fcb900;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
}

.logo img {
    height: 70px;
}

.title {
    flex: 1;
    margin-left: 15px;
    color: white;
}

.title h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.title p {
    font-size: 14px;
    margin: 0;
}

.nav {
    background-color: #004d26;
    padding: 10px 0;
    text-align: center;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 14px;
}

.nav a:hover {
    text-decoration: underline;
}

/* =====================
    LOGIN CONTAINER
  ===================== */
.login-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-container h2 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    margin-top: 5px;
    border: 1px solid #999;
    border-radius: 2px;
}

form .options {
    margin-top: 10px;
}

form .options input[type="checkbox"] {
    margin-right: 5px;
}

form .actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form .actions a {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
}

form .actions a:hover {
    text-decoration: underline;
}

form button {
    background-color: #e1e1e1;
    padding: 6px 14px;
    font-size: 14px;
    border: 1px solid #999;
    border-radius: 2px;
    cursor: pointer;
}

/* =====================
    SIDEBAR MENU (Opsional)
  ===================== */
.sidebar {
    background-color: #004d26;
    color: white;
    padding: 10px;
    margin-top: 30px;
}

.sidebar h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.sidebar a {
    display: block;
    padding: 6px 0;
    color: white;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

.sidebar a:hover {
    text-decoration: underline;
}
