/* Latar belakang halaman login penuh */
.Admin-section {
    width: 100%;
    height: 100vh;
    background: #4a6741; /* Warna hijau khas WebGIS */
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Mengubah ukuran box menjadi LANDSCAPE (Melebar ke samping, lebih pendek ke bawah) */
.Admin-content {
    width: 550px; /* Diperlebar agar memberikan kesan landscape */
    background: white;
    padding: 30px 50px; /* Padding atas-bawah diperkecil, kiri-kanan diperlebar */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.Admin-content h2 {
    color: #2f5d2f;
    margin-bottom: 5px;
    font-size: 24px;
}

.Admin-content p {
    margin-bottom: 20px;
    color: gray;
    font-size: 14px;
}

/* Input dibuat lebih ramping */
.Admin-content input {
    width: 100%;
    padding: 11px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccced0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.btn-masuk {
    width: 100%;
    padding: 11px;
    border: none;
    background: #3f6b35;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 5px;
}

.btn-masuk:hover {
    background: #2f5227;
}

/* Garis pembatas atau */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #888888;
    font-size: 13px;
}
.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}
.separator:not(:empty)::before { margin-right: .5em; }
.separator:not(:empty)::after { margin-left: .5em; }

/* Desain Tombol Google agar Iconnya Muncul */
.btn-google {
    width: 100%;
    padding: 11px;
    background: #ffffff;
    color: #444444;
    border: 1px solid #ccced0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-google:hover {
    background: #f5f7f8;
}

.btn-google img {
    width: 18px; /* Mengatur ukuran icon Google */
    height: 18px;
    display: inline-block;
}

/* Teks Sign Up */
.auth-switch {
    margin-top: 15px;
    font-size: 13px;
    color: #666666;
}

.auth-switch a {
    color: #3f6b35;
    text-decoration: none;
    font-weight: 600;
}

/* Mengecilkan ukuran font tombol kembali sesuai request */
.btn-kembali-kecil {
    margin-top: 20px;
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
    font-size: 11px; /* Font dikecilkan murni */
    font-weight: 500;
}

.btn-kembali-kecil:hover {
    color: #3f6b35;
    text-decoration: underline;
}
