/* Styling Halaman Login */
.login-body {
    background-color: white; /* Background putih */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.login-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3)); /* Efek bayangan untuk kesan 3D */
}

.login-card {
    background-color: #28a745; /* Background hijau untuk card */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    color: white; /* Label putih agar kontras dengan background */
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Pastikan prioritas tinggi untuk tombol */
.btn-lg {
    padding: 12px;
    font-size: 1.2rem;
    background-color: white !important; /* Paksa tombol menjadi putih */
    border: none;
    color: black !important; /* Paksa teks menjadi hitam */
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Efek 3D */
    transition: all 0.2s ease;
}
.btn-lg:hover {
    background-color: #f0f0f0 !important; /* Warna lebih terang saat hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
/* Responsif untuk perangkat mobile */
@media (max-width: 768px) {
    .login-card {
        padding: 20px; /* Lebih kecil padding untuk mobile */
        box-shadow: none; /* Menghilangkan shadow untuk tampilan sederhana di mobile */
    }
    
    .login-logo {
        width: 100px; /* Perkecil logo di perangkat mobile */
    }
    
    .btn-lg {
        font-size: 1.4rem; /* Perbesar tombol pada mobile */
        padding: 15px; /* Perbesar padding tombol */
    }
    
    .form-group input {
        font-size: 1.1rem; /* Perbesar input text di perangkat mobile */
    }
}
