.container {
    display: flex;
    width: 100%;
}

.image-column {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 0 1.5rem;
    align-items: center;
}

.image-content {
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
}

.form-column {
    flex: 6;
    background-color: #fff;
}

.form-container {
    display: flex;
    height: 100%;
}

.form-container .form-group {
    flex-grow: 1;
    width: 100%;
    height: 100%;
}

.form-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.form-label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #9d9d9d;
}

.form-input,
.form-select {
    color: #3a3a3a;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    height:40px;
}

.btn-book {
    background-color: #b88760;
    color: #fff;
    border: 0;
    width: 100%;
    height: 100%;
    font-weight: 500;
    cursor: pointer;
}

.book-text {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.book-text-helper {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 14px;
}

/* Media query for mobile devices */
@media screen and (max-width: 767px) {
    .hide-sm {
        display: none;
    }
    
    .container {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
        
    .image-column {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        padding: 0 1.5rem;
        align-items: center;
    }
    
    .image-content {
        height: 65px !important;
    }

    .form-column {
        flex: 1;
        background-color: #fff;
    }
}