:root {
    --brand-blue: #224156;
    --light-gray: #f4f4f4;
}

body {
    font-family: sans-serif;
    background-color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.logo {
    max-width: 250px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 1rem;
}

h1 {
    color: var(--brand-blue);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
    font-weight: bold;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important for padding to not affect width */
    font-family: inherit;
}

button {
    width: 100%;
    padding: 12px;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1a3242; /* Slightly darker shade for hover */
}

#successMessage {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}