body {
    font-family: Arial, sans-serif;
    background-color: #add8e6; /* light blue */
    padding: 30px;
}

.container {
    display: flex;
    justify-content: space-between;
}

.input-section, .quote-section {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-section {
    flex: 2;
    margin-right: 2%;
}

.quote-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #555;
}

#quoteBox {
    width: 80%; /* Reduced width of the quote box */
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.quote-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.half-width {
    width: 46%; /* slightly less than half to account for any margins/paddings */
    float: left; /* this will make them align side by side */
    box-sizing: border-box; /* to ensure padding doesn't affect the width */
}

.half-width:nth-child(odd) {
    margin-right: 5%; /* space between two side-by-side fields */
}
