/* css/login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Sisi Kiri - Biru Gelap */
.left-side {
    flex: 1;
    background-color: #0f2540; /* Warna biru gelap sesuai gambar */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.logo {
    width: 100px; /* Sesuaikan ukuran logo asli */
    margin-bottom: 15px;
}

.left-side h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.badge-system {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sisi Kanan - Putih */
.right-side {
    flex: 1;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 80%;
    max-width: 400px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Efek bayangan kartu */
}

.login-card h2 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    font-size: 14px;
    outline: none;
}

.input-group input:focus {
    border-color: #0f2540;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.btn-login {
    width: 100%;
    padding: 15px;
    background-color: #0f2540;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #1a3a5e;
}

.error-text {
    color: red;
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: center;
}