body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.auth-container, .content-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.password-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #45a049;
}

#catImageContainer {
    margin-top: 20px;
}

#catImageContainer img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
    margin-top: 20px;
}