* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.direct-text {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
}

.direct-text span {
    font-weight: 300;
    color: #333;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
}

main {
    max-width: 500px;
    margin: 20px 0 20px 20px;
    padding: 0 15px;
}

.login-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.security-info {
    background: #008080;
    color: #fff;
    padding: 20px;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 15px;
}

.security-info ul {
    list-style: none;
    font-size: 12px;
    margin-bottom: 20px;
}

.security-info li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.security-info li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.url-check {
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px;
    border-radius: 5px;
}

.url-check p {
    font-size: 14px;
    margin-bottom: 5px;
}

.url-box {
    font-weight: bold;
    font-size: 14px;
}

.login-form {
    padding: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.password-group {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-masuk {
    flex: 1;
    background: #f37021;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-hapus {
    flex: 1;
    background: #008080;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.note {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-links {
    flex: 1;
}

.lupa-sandi {
    color: #f37021;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.terms {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.terms a {
    color: #008080;
    text-decoration: none;
}

.digicert {
    text-align: right;
    font-size: 10px;
    color: #777;
}

.digicert img {
    height: 30px;
    display: block;
    margin-top: 5px;
    margin-left: auto;
}

.support-section {
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.support-header {
    background: #008080;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

.support-links {
    display: flex;
    flex-direction: column;
}

.support-links a {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.service-contact {
    margin-top: 20px;
    background: #e9ecef;
    padding: 20px;
    display: flex;
    gap: 20px;
    border-radius: 8px;
}

.service-box {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 13px;
    margin-bottom: 5px;
}

.carousel {
    margin-top: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-inner img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

footer {
    background: #fff;
    padding: 40px 20px 20px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 40px;
    margin-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-grid h4 {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.footer-grid p, .footer-grid a {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}