* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Card Utama Login */
.login-card {
    background-color: #ffffff;
    border: 2px solid #333333;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Panel Kiri (Form Login) */
.left-panel {
    flex: 1;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

/* Garis Bawah Header */
.form-header h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 35px;
    height: 3px;
    background-color: #111111;
}

.welcome-title {
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    margin-top: 15px;
    margin-bottom: 4px;
}

.welcome-subtitle {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

/* Form Group & Input */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #555555;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 10px 12px 10px 38px;
    font-size: 13px;
    border: 1px solid #777777;
    border-radius: 8px;
    outline: none;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input-wrapper select {
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 12px;
    width: 16px;
    height: 16px;
    color: #555555;
    pointer-events: none;
}

.toggle-password {
    position: absolute;
    right: 12px;
    width: 18px;
    height: 18px;
    color: #555555;
    cursor: pointer; /* Menjadikan kursor panah menjadi pointer tangan */
}

/* Tombol-Tombol */
.btn-login {
    width: 100%;
    padding: 11px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-login:hover {
    background-color: #222222;
}

.btn-register {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    color: #222222;
    border: 1px solid #777777;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-register:hover {
    background-color: #f5f5f5;
}

/* Panel Kanan (Branding & Ilustrasi) */
.right-panel {
    flex: 1.1;
    padding: 40px 30px;
    border-left: 2px solid #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
}

.logo-section {
    margin-bottom: 15px;
}

.logo-icon {
    width: 65px;
    height: auto;
    margin-bottom: 8px;
}

.logo-section h2 {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.5px;
}

.logo-section p {
    font-size: 13px;
    color: #555555;
    font-weight: 700;
}

.description {
    font-size: 12px;
    color: #444444;
    line-height: 1.5;
    max-width: 320px;
    margin-bottom: 20px;
}

.illustration {
    width: 100%;
    max-width: 270px;
    margin-top: auto;
}

/* Footer Atas Halaman */
.footer-text {
    margin-top: 25px;
    font-size: 11px;
    color: #666666;
    text-align: center;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }
    .right-panel {
        border-left: none;
        border-top: 2px solid #333333;
    }
}