body {
	background-color: rgb(255,255,255);
	color: rgba(5, 28, 44, 50);
	font-family: 'Playfair Display', serif;
	text-align: center;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.header {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
    text-align: left;
}

.logo {
    max-width: 100px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

h1 {
    margin: 10;
}

.form-container {
    background-color: #005186; /* McKinsey Blue */
    padding: 20px;
    border-radius: 10px;
    color: white;
    width: 80vw;
    max-width: 600px; /* More balanced width */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the form elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

input, textarea {
    font-size: 16px;
    width: 95%; /* Slightly smaller than full width for better spacing */
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    background: white;
    color: black;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Inner shadow effect */
}

textarea {
    height: 160px; /* More space for message input */
}

button {
    background-color: #FFB400; /* Modern yellow button */
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 50%; /* Balanced button width */
    margin-top: 10px;
}

button:hover {
    background-color: #E6A000; /* Slightly darker yellow */
    transform: translateY(-2px);
}

button:active {
    transform: translateY(1px);
}

