@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
    max-width: 500px;
    width: 100%;
}

.image-container {
    height: 100vh; /* Set height to 100 viewport height */
    overflow: hidden; /* Hide overflowing parts of the image */
}

.image-container img {
    width: 100%; /* Stretch image to fill container width */
    height: 100%; /* Stretch image to fill container height */
    object-fit: cover; /* Crop to fit while maintaining aspect ratio */
}

body {
    font-family: 'Montserrat', sans-serif;
}

button[type="submit"] {
    background-color: #E71C36;
    color: #fff;
    padding: 10px 20px;
    border: none;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #b4182d;
}
