body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
}

form {
    text-align: left;
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #238542; /* Ändern Sie die Hintergrundfarbe auf das gewünschte Grün */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button::hover {
    background-color: #186c37; /* Ändern Sie die Hintergrundfarbe im Hover-Zustand */
}

.wine-bar-image {
    background-image: url('wine-bar-image.jpg');
    height: 200px; /* Set the desired height */
    background-size: cover;
    background-position: center;
}

.success-message {
    color: #238542; /* Grün für die Bestätigungsnachricht */
    font-weight: bold;
}
