/* Same as previous CSS */
* {
    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 {
    color: #fff; /* Red color from your brand */
    font-size: 2.5rem;
}

p {
    color: #fff; /* Yellow from your brand */
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        text-shadow: 1px 1px 20px rgba(0,0,0,0.5);
    }

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

    .logo {
        max-width: 120px;
    }
    .container {
        max-width: 100%;
    }
}

.paw {
    position: fixed;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1000;  /* Ensure paw prints appear above other elements */
    pointer-events: none;
    transition: transform 0.5s ease, opacity 2s ease; /* Add opacity transition */
    opacity: 1; /* Ensure the paw print starts fully opaque */
}

/* Left and right paw specific styling */
.left-paw {
    background-image: url('../img/bear-paw.webp');  /* Image for left paw */
}

.right-paw {
    background-image: url('../img/bear-paw.webp');  /* Image for right paw */
}

/* Fade-out effect */
.paw.fade-out {
    opacity: 0;
}



@keyframes fall {
    0% {
        top: -100px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

/* Styles for the lock icon */
.login-lock {
    position: fixed;
    top: 20px;
    right: 20px; /* Updated to match the login box positioning */
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 2000;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.login-lock:hover {
    opacity: 1;
}

/* Sliding login box styles */
.login-box {
    position: fixed;
    top: 0;
    right: -350px; /* Initially hidden off-screen on the right */
    width: 300px;
    height: 100vh;
    background: #212121;
    color: #fff;
    padding: 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; /* Slide in */
}

.login-box h2 {
    margin-top: 0;
    font-size: 24px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.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"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.login-box input[type="submit"]:hover {
    background: #005d8f;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
}
