body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #ffecd2;
    overflow: hidden;
    position: relative;
}

.cat {
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
}


.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    z-index: 1;
    position: absolute;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
}

label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

button {
    width: calc(100% - 20px);
    padding: 10px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

button:hover {
    background-color: #4cae4c;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .login-container {
        padding: 20px;
    }

    input, button {
        font-size: 14px;
    }
}