body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px; /* Increase overall font size */
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 550px; /* Slightly bigger container */
}

label, select, input, textarea, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px; /* Increase input field font size */
}

textarea {
    height: 120px; /* Bigger text area */
    resize: none;
}

button {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px; /* Bigger button font */
    font-weight: bold;
}

button:hover {
    background: #218838;
}

h2 {
    text-align: center;
    font-size: 22px; /* Bigger title */
}

#emailOutput {
    border: 1px solid #ddd;
    padding: 12px;
    background: white;
    font-size: 18px; /* Bigger font in generated email */
}

.logo-img {
    width: 30px; /* Adjust size as needed */
    height: auto;
    vertical-align: middle;
}

