/* :root {
    --black: #000411;
    --dark-grey: #3F3A3B;
    --light-grey: #808185;
    --off-white: #FAF3F3;
} */

body {
    text-align: center;
    position: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 16px;
    line-height: 1.6;
}

#login {
    color: var(--off-white);
    padding: 20px 20px;
    text-align: left;
    float: left;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    position: flex;
    display: flex;
    justify-content: bottom;
    align-items: bottom;
    position: absolute;
    bottom: 0;
    left: 0;
}

#key {
    height: 25px;
}

#password {
    display: none;
}

#container h1 {
    font-size: 2rem;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    body {
        font-size: 18px; /* Increase base font size */
    }

    #container h1 {
        font-size: 2.5rem; /* Make the heading larger */
        text-align: center;
    }

    .button {
        font-size: 1.2rem; /* Increase button font size */
        padding: 15px 25px; /* Add more padding for touch targets */
    }

    #login {
        display: flex;
        align-items: center;
        margin-top: 20px;
        width: 100%; /* Full width for mobile */
    }

    #password {
        font-size: 1.2rem; /* Make the password input larger */
        padding: 10px;
        width: 50%; /* Adjust width for smaller screens */
        height: 10px;
    }

    #key {
        width: 30px; /* Adjust the size of the key icon */
        height: auto;
        margin-top: 10px;
        display: inline-block;
    }
}