@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0 auto;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px;
    font-family: 'Poppins', sans-serif;
    background-color: #333;
    color: white;
    overflow-y: hidden;
}

.container {
    background-color: antiquewhite;
    width: 650px;
    color: black;
    border-radius: 8px;
    box-shadow: 0px 0px 10px black;
}

#masukan {
    position: relative;
    top: 10px;
}

input {
    border-radius: 8px;
    width: 250px;
    height: 20px;
    font-family: 'poppins', sans-serif;
}

button {
    border-radius: 5px;
    border: none;
    width: 150px;
    font-family: 'poppins', sans-serif;
}

input:focus {
    box-shadow: 0px 0px 10px red;
}

.footer, a {
    text-decoration: none;
    color: black;
}

/* === MOBILE / HP === */
@media (max-width: 600px) {
    body {
        padding: 20px;
        overflow-y: auto;
    }

    .container {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    input {
        width: 100%;
        height: 35px;
        font-size: 16px;
    }

    button {
        width: 100%;
        height: 40px;
        margin-top: 10px;
        font-size: 16px;
    }

    #masukan {
        top: 5px;
    }

    ul#riwayat {
        padding-left: 15px;
        text-align: left;
    }
}
