  /* Custom styles for the map and form layout */

.form-container {
    background-color: #f9f9f9;
    
    padding: 20px 30px 20px 30px;
    margin-top: 40px;
    border-radius: 8px;
    width: 100%;
}
.map-container {

    border-radius: 8px;
    width: 100%; 
    padding: 0px 30px 0px 0px; 

    margin-top:40px;
    height: 92%;
}

iframe {
    border-radius: 8px;
    height: 100%;
    width: 100%; /* Ensure the iframe takes full width of its container */
}



/* Flexbox for centering content within map and form columns */

.form-column {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure full height */
    width: 50%; /* Ensure equal width */
    padding: 0;
}



.form-column {
    padding: 0; /* Remove padding for the form column */
}

/* Ensures form and map maintain equal height across screen sizes */
@media (max-width: 767px) {
    .map-column,
    .form-column {
        width: 100%;
        margin-bottom: 20px;
    }

    iframe {
        height: auto; /* Let iframe height be flexible on smaller screens */
        width: 100%;  /* Ensure full width on smaller screens */
    }
}
.back-btn {
    background-color: #014222;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #014222;
}