body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.code-site-home-wrap {
    margin: 0;
    padding: 12px 16px 0;
}

.code-site-home-link {
    color: #555;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.code-site-home-link:hover {
    color: #111;
    text-decoration: underline;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: auto; /* Ensure the width adjusts proportionally */
    display: block; /* Ensure the image is treated as a block element */
    margin: 0 auto; /* Center the image horizontally */
}

/* Media query for screens smaller than 768 pixels */
@media (max-width: 767.99px) {
    .logo-img {
        max-height: 175px; /* Set maximum height for the image */
    }
}

h2 {
    color: #333;
    text-align: center;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}
