/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Body and Container Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #a4b1a6;
    height: 100vh; /* Ensure background fills the full viewport height */
}

/* Form and Image Sides */
.form-side {
    width: 50%;
}

.image-side {
    width: 50%;
    text-align: center;
}

/* Button and Image Section */
.button-image-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.serenium-img {
    max-width: 150px; /* Adjust this size as needed */
    height: auto;
    margin-left: auto; /* This will push the image to the right */
}

.btn-gallery {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    font-size: 16px;
}

.btn-gallery:hover {
    background-color: #0056b3;
}

.container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f4eadf;
}

/* Header Section Styling */
.header-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
}

.header-image {
    width: 500px;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    margin-bottom: 20px;
}

input[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    body {
        background-color: #a6b7ac; /* Keep the background color on smaller screens */
    }
    .container {
        padding: 15px;
    }

    .header-image {
        width: 100%;
        height: auto;
        margin: 0;
    }
}
