body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

.logo img {
    height: 50px; /* Sesuaikan tinggi logo */
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-button {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 2px solid black;
    border-radius: 20px;
    background-color: white;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    outline: none;
    transition: background-color 0.3s ease;
}

.language-button:hover {
    background-color: #f0f0f0;
}

.flag-icon {
    width: 20px; /* Sesuaikan ukuran bendera */
    height: auto;
    margin-right: 5px;
}

.language-button i {
    margin-left: 5px;
}

.breadcrumb {
    margin-top: 10px; /* Jarak dari header yang sticky */
    background-color: #f9f9f9;
    padding: 10px;
    font-size: 14px;
    color: #333;
}

.breadcrumb p {
    margin: 0;
}

main {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

.intro h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.warning-image img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.job-role {
    text-align: center;
    margin: 30px 0;
}

.job-role h2 {
    font-size: 24px;
    color: #d32f2f; /* Warna merah yang tebal */
    font-weight: bold;
    margin-bottom: 20px;
}

.daftar-form {
    display: inline-block;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow untuk efek melayang */
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.daftar-form span {
    margin-right: 10px;
}

.daftar-form select {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    cursor: pointer;
    padding: 5px 10px;
}

.daftar-form select option {
    background-color: #fff;
    color: #333;
}
