/* General Styling */
body {
    background: url('./images/f05b6701811dfd9cfdc96456eadcf1ab.gif') no-repeat center center/cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


/* Main Container */
.container {
    display: flex;
    width: 80%;
    max-width: 1000px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Left Side - Form */
.form-container {
    background: url(./images/light-color-background-swzb97w5pxngu8yv.jpg);
    flex: 1;
    padding: 20px;
}

h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

#responseMessage {
    text-align: center;
    margin-top: 10px;
}

/* Right Side - Info & Map */
.info-container {
    background: url(./images/light-color-background-swzb97w5pxngu8yv.jpg);
    flex: 1;
    padding: 20px;
    border-left: 2px solid #ddd;
    text-align: center;
}

.map {
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
}
