body, html {
    height: 100%;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Updated font for a more modern look */
    background-color: #f4f4f4; /* Light grey background for a subtle texture */
    color: #333; /* Darker text for better readability */
}
.box {
    display: -webkit-box; /* Old iOS */
    display: -moz-box; /* Old Firefox */
    display: -ms-flexbox; /* IE 10 */
    display: -webkit-flex; /* Old Chrome/Safari */
    display: flex; /* Standard syntax */
}

.background {
    background-color: #ff0; /* Fallback */
    background-image: linear-gradient(to right, #f06, #ff0);
}


.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 100px); /* Adjusted height to account for the margin-top */
    padding: 40px; /* Added padding for better spacing on smaller screens */
    margin-top: 100px; /* Adjust this value based on the height of your search bar */
}


.logo-container {
    text-align: center;
    margin-bottom: 30px; /* Increased margin for better visual separation */
}

.logo-container img {
    width: auto; /* Adjusted for better control over image size */
    height: 50px; /* Set a fixed height for consistency */
    object-fit: contain; /* Ensure the logo is fully visible without distortion */
}

.welcome-message {
    text-align: center;
    padding: 20px;
    max-width: 600px; /* Max width for better readability on larger screens */
    width: 100%; /* Ensure it doesn't exceed the parent container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
.special-note {
    font-weight: bold; /* Makes the text bold */
    color: #007bff; /* Changes the text color to a blue, adjust as needed */
    margin-top: 10px; /* Adds some space above the statement for better separation */
}


.thanks-message {
    text-align: center;
    padding: 20px;
    background-color: white; /* Background color for contrast */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    max-width: 600px; /* Max width for better readability on larger screens */
    width: 100%; /* Ensure it doesn't exceed the parent container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Additional styles for form elements for a cohesive look */
input[type="text"], input[type="email"], input[type="tel"], button {
    padding: 10px;
    margin-top: 5px; /* Space between label and input */
    margin-bottom: 15px; /* Space between form groups */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 4px; /* Matched border radius */
    width: calc(100% - 22px); /* Full width taking padding and border into account */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

button {
    background-color: #007bff; /* Bootstrap primary color for familiarity */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s; /* Smooth transition for hover effect */
}

button:hover {
    background-color: #0056b3; /* Darker shade on hover for interaction feedback */
}
