body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 10px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    color: #333;
}

p {
    margin: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type=text], input[type=password] {
    padding: 10px;
    margin: 5px 0;
    width: 90%;
    max-width: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #551e19;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 50%;
    max-width: 200px;
}

button:hover {
    background-color: #3d1614;
}

.create-button {
    text-decoration: none;
    color: #551e19;
    margin-top: 20px;
}

img.header-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    input[type=text], input[type=password], button {
        width: 90%;
    }

    .create-button {
        width: 90%;
        text-align: center;
        display: block;
    }
}
