* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Stag', sans-serif;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100vh;
    background: url('../img/bear-cool.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.container {
    padding: 10vw;
    border-radius: 10px;
    max-width: 60%;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .logo {
        max-width: 120px;
    }

    h1, p {
        text-shadow: 1px 1px 20px rgba(0,0,0,0.5);
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

.paw {
    position: fixed;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1000;
    pointer-events: none;
    transition: all 0.5s ease;
    opacity: 1;
}

.left-paw, .right-paw {
    background-image: url('../img/bear-paw.webp');
}

.paw.fade-out {
    opacity: 0;
}

.login-lock {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 2000;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background: #000;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #fff;
}

.login-lock:hover {
    opacity: 1;
}

.login-box {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    background: #212121;
    color: #fff;
    padding: 20px 50px 20px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
}

.login-box.open {
    right: 0;
}

.login-box h2 {
    margin-top: 0;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.login-box label {
    display: block;
    margin-bottom: 5px;
}
.login-box input[type="text"],
.login-box input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    background: #333;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
}

.login-box input[type="submit"] {

}

.login-box input[type="submit"]:hover {
    background: #333;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5em 1em;
    color: #fff;                /* witte tekst */
    border: 1px solid #fff;     /* witte rand */
    border-radius: 4px;         /* tikje afgerond */
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.2); /* licht grijs / semi-transparant wit */
}