/* =========================================================
   ind.css - Gaya Tampilan Landing Page RW 023
   ========================================================= */

body {
    font-family: 'Nunito', sans-serif;
    background-color: #4e73df;
    background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.card-portal {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    overflow: hidden;
}

.bg-login-image {
    background-image: url('../images/logo-pemkot-bekasi.png'); /* Menggunakan ../ karena posisi file ada di dalam folder style/ */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f8f9fa;
}

.btn-user {
    font-size: .8rem;
    border-radius: 10rem;
    padding: .75rem 1rem;
    transition: all 0.2s ease-in-out;
}

.btn-user:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.text-gray-900 { 
    color: #3a3b45 !important; 
}

/* Agar tombol di dalam grid memiliki tinggi yang seragam */
.menu-grid-item {
    display: flex;
    align-items: stretch;
}

.menu-grid-item .btn {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CSS Tambahan (SB Admin 2) */
.btn-google { 
    color: #fff; 
    background-color: #ea4335; 
    border-radius: 10rem; 
}

.btn-facebook { 
    color: #fff; 
    background-color: #3b5998; 
    border-radius: 10rem; 
}