/* ====================================
   1. STYLING GLOBAL DAN CONTAINER
   ==================================== */
   body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Memastikan full viewport */
    margin: 0;
    overflow: hidden; /* Mencegah scroll pada body */
}

.container {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Ukuran lebih kecil dari 1000px */
    max-width: 750px; 
    width: 90%;
    /* Memastikan kontainer mengisi vertikal */
    min-height: 90vh; 
    margin: 30px 0; 
    overflow: hidden;
}

/* ====================================
   2. KOLOM KIRI: FORMULIR LOGIN
   ==================================== */
.login-panel {
    flex: 1;
    /* Padding vertikal dikurangi agar konten lebih ringkas */
    padding: 40px 40px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Judul SIPANDA (Merah Marun, Rapat) */
.logo {
    color: #800000; /* Merah Marun */
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 0px; 
}

/* Sub-judul (Rapat) */
.welcome-text {
    font-size: 1rem; 
    color: #555;
    margin-top: 2px; 
    margin-bottom: 5px; 
}

.main-title {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 25px; 
    font-weight: 700;
}

/* --- Formulir dan Input --- */
.login-form label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}

.login-form input[type="email"], 
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background-color: #e0f2f7; 
    box-sizing: border-box;
    font-size: 1rem;
    color: #333;
}


.password-group {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    margin-bottom: 30px;
}

.password-group input {
    margin-bottom: 5px; 
}

/* Forgot Password (Warna Pink/Aksen) */
.forgot-password {
    color: #e91e63;
    font-size: 0.85rem;
    text-decoration: none;
    margin-left: auto;
    margin-top: -10px; 
}

/* Tombol Login (Warna Pink/Aksen) */
.login-button {
    background-color: #e91e63; 
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.login-button:hover {
    background-color: #c2185b;
}

/* Social Login dan Sign Up styles DIHAPUS karena elemennya sudah dihapus dari HTML */

/* ====================================
   3. KOLOM KANAN: ILUSTRASI PANDA
   ==================================== */
.illustration-panel {
    flex: 1;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panda-illustration {
    max-width: 100%; 
    max-height: 100%;
    object-fit: contain; 
}

/* ====================================
   4. MEDIA QUERY (RESPONSIVENESS)
   ==================================== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 100%;
        margin: 20px;
        min-height: auto; 
    }

    .illustration-panel {
        min-height: 250px; 
        border-bottom-left-radius: 20px; 
        border-top-right-radius: 20px; 
        border-bottom-right-radius: 20px; 
    }
    
    .login-panel {
        padding: 40px 20px;
    }
}

/* dashboard admin */
