* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #333;
    min-height: 100vh;
}

.header {
    background: #fff;
    border-bottom: 3px solid #F15A22;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
}

.logo-bni {
    font-size: 22px;
    font-weight: 700;
    color: #F15A22;
    letter-spacing: -1px;
}

.logo-direct {
    font-size: 22px;
    font-weight: 300;
    color: #009B77;
    letter-spacing: -1px;
}

.logo-sub {
    width: 100%;
    font-size: 11px;
    color: #009B77;
    font-style: italic;
    margin-top: -4px;
}

.lang-selector {
    color: #F15A22;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-selector .fa-globe {
    color: #F15A22;
    font-size: 11px;
}

.main-content {
    max-width: 460px;
    margin: 0;
    margin-left: 20px;
    padding: 16px 10px;
}

.login-container {
    background: #fff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 14px;
}

.security-notice {
    background: linear-gradient(180deg, #1a9e85 0%, #148a73 100%);
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px 8px 0 0;
}

.security-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-list {
    font-size: 11px;
    padding-left: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.security-list li {
    margin-bottom: 2px;
}

.url-notice {
    background: rgba(255,255,255,0.15);
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 6px 14px;
    text-align: center;
    font-size: 11px;
}

.login-form {
    padding: 12px 16px;
}

.form-group {
    margin-bottom: 6px;
    position: relative;
}

.form-input {
    width: 70%;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 11px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #009B77;
}

.form-input::placeholder {
    color: #aaa;
    font-size: 11px;
}

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 32%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 6px;
}

.btn {
    padding: 6px 22px;
    border: none;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn-login {
    background: #1a9e85;
    color: #fff;
}

.btn-clear {
    background: #1a9e85;
    color: #fff;
}

.save-password {
    font-size: 10px;
    color: #666;
}

.save-password label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.save-password input[type="radio"] {
    accent-color: #009B77;
    width: 12px;
    height: 12px;
}

.login-footer {
    padding: 10px 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #eee;
}

.forgot-password a {
    color: #009B77;
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
}

.forgot-password p {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
    line-height: 1.4;
}

.forgot-password p a {
    font-weight: 400;
    font-size: 9px;
}

.security-cert {
    text-align: right;
    font-size: 10px;
    color: #999;
}

.digicert-logo {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: flex-end;
}

.digicert-logo i {
    color: #0066cc;
}

.support-section {
    margin-bottom: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.support-header {
    background: #1a9e85;
    color: #fff;
    padding: 10px 16px;
}

.support-header h3 {
    font-size: 13px;
    font-weight: 600;
}

.support-links {
    background: #fff;
}

.support-links a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.support-links a:last-child {
    border-bottom: none;
}

.support-links a:hover {
    background: #f9f9f9;
}

.service-team {
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.service-team-inner {
    display: flex;
    gap: 16px;
    align-items: center;
}

.service-label {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    border-right: 2px solid #ddd;
    padding-right: 14px;
    font-weight: 700;
}

.service-contacts {
    font-size: 11px;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-contacts i {
    color: #009B77;
    width: 14px;
    text-align: center;
    margin-right: 4px;
}

.promo-slider {
    position: relative;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 8px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.slide {
    width: 33.333%;
    padding: 0 3px;
    flex-shrink: 0;
}

.slide-card {
    border-radius: 8px;
    padding: 20px 16px;
    color: #fff;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-card-1 {
    background: linear-gradient(135deg, #009B77 0%, #007a5e 100%);
}

.slide-card-2 {
    background: linear-gradient(135deg, #F15A22 0%, #d94a17 100%);
}

.slide-card-3 {
    background: linear-gradient(135deg, #1a4a7a 0%, #0d3460 100%);
}

.slide-logo {
    margin-bottom: 6px;
}

.logo-bni-sm {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 3px;
}

.slide-card p {
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    color: #333;
    font-size: 11px;
}

.slider-prev {
    left: 6px;
}

.slider-next {
    right: 6px;
}

.footer {
    background: #fff;
    border-top: 3px solid #009B77;
    padding: 24px 0 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo .logo-bni {
    font-size: 24px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.footer-col p {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3px;
}

.footer-col a {
    color: #666;
    text-decoration: none;
}

.footer-col a:hover {
    color: #009B77;
}

.footer-col i {
    color: #009B77;
    width: 14px;
    text-align: center;
    margin-right: 4px;
}

.footer-bottom {
    background: #009B77;
    color: #fff;
    padding: 8px 0;
    font-size: 11px;
}

.footer-bottom marquee {
    font-size: 11px;
}

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

    .main-content {
        margin-left: 10px;
        padding: 12px 8px;
    }
}
