body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f0f2f5; /* Warna latar belakang lembut */
    display: flex; /* Menggunakan flexbox untuk memposisikan konten di tengah */
    justify-content: center; /* Horisontal tengah */
    align-items: center; /* Vertikal tengah */
    min-height: 100vh; /* Memastikan body mengisi seluruh tinggi viewport */
    overflow: hidden; /* Mencegah scrollbar jika konten terlalu besar */
}

.login-container {
    display: flex;
    flex-direction: column; /* Mengatur elemen secara vertikal */
    align-items: center; /* Tengah secara horizontal */
    padding: 30px;
    max-width: 400px; /* Lebar maksimum container */
    width: 100%;
    box-sizing: border-box;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    width: 80px; /* Ukuran logo */
    height: 80px;
    margin-bottom: 15px;
}

.app-title {
    font-size: 18px; /* Ukuran teks judul aplikasi */
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.login-form-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 25px; /* Jarak ke footer */
}

.form-title {
    font-size: 24px;
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left; /* Teks label tetap di kiri */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #6f42c1; /* Warna ungu seperti topbar */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 15px;
}

.btn-login:hover {
    background-color: #5a2e9e; /* Sedikit lebih gelap saat hover */
}

.login-footer {
    font-size: 13px;
    color: #777;
    text-align: center;
}