
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #5c5c5c;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-buttons .btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-buttons .login {
    background-color: #1e88e5;
}

.auth-buttons .daftar {
    background-color: #e53935;
}

.auth-buttons .btn:hover {
    opacity: 0.85;
}
.container {
max-width: 1100px;
margin: auto;
padding: 30px;
background: #ffffff;
}
h1 {
font-size: 28px;
margin-bottom: 15px;
}
h2 {
font-size: 22px;
margin-top: 35px;
color: #c62828;
}
h3 {
font-size: 18px;
margin-top: 20px;
}
ul {
margin-left: 20px;
}
hr {
margin: 40px 0;
border: none;
border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        max-width: 140px;
    }
}
