/* Reset dasar dan Pengaturan Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fdfdfd;
    /* Menggunakan background grid yang sama */
    /* background-image: url('../image/bgLogin.png');  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Header Styling --- */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.logo {
    width: 80px;
    height: auto;
}

.header-text {
    text-align: left;
}

.header-text h2 {
    font-size: 1.1rem;
    color: #1a4d2e; /* Hijau paling gelap */
    font-weight: 700;
}

.header-text h3 {
    font-size: 1rem;
    color: #386641;
    font-weight: 600;
}

/* --- Main Content Styling --- */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.titles {
    margin-bottom: 3rem;
}

.title-top {
    font-size: 2rem;
    color: #4a7c59;
    font-weight: 700;
    margin-bottom: 5px;
}

.title-mid {
    font-size: 2.2rem;
    color: #4a7c59;
    font-weight: 800;
    margin-bottom: 10px;
}

.title-bot {
    font-size: 1.3rem;
    color: #5c9e74;
    font-weight: 600;
}

.login-prompt {
    font-size: 1.2rem;
    color: #5c9e74;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* --- Button Styling --- */
.button-group {
    display: flex;
    gap: 40px; /* Jarak antara tombol Guru dan Siswa */
    justify-content: center;
}

.btn-role {
    background-color: #6ba87a; /* Warna hijau tombol */
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 0;
    width: 220px; /* Lebar tombol agar sama ukurannya */
    border-radius: 25px; /* Sudut membulat */
    display: inline-block;
    box-shadow: 0 6px 0 #4a805c; /* Efek 3D / ketebalan bawah */
    transition: transform 0.1s, box-shadow 0.1s;
}

/* Action Ketuk / Efek saat ditekan */
.btn-role:active {
    transform: translateY(6px); /* Tombol turun seolah ditekan */
    box-shadow: 0 0 0 #4a805c; /* Bayangan menghilang */
}

/* --- Responsivitas untuk layar HP --- */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-text {
        text-align: center;
    }

    .title-top { font-size: 1.5rem; }
    .title-mid { font-size: 1.5rem; }
    .title-bot { font-size: 1rem; }

    .button-group {
        flex-direction: column;
        gap: 20px;
    }
}