:root {
    --nhw-green: #132d0f;
    --nhw-light: #f5f5f0;
    --nhw-white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--nhw-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--nhw-light);
}
.nhw-header {
    background-color: var(--nhw-green);
    color: var(--nhw-light);
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
}
.nhw-header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: normal;
}

.nhw-form-container {
    background-color: var(--nhw-white);;
    padding: 2rem;
    border-radius: 6px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nhw-form-container h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--nhw-green);;
}

.nhw-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--nhw-green);;
}

.nhw-form-container input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.nhw-form-container button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--nhw-green);
    color: var(--nhw-light);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.nhw-form-container button:hover {
background-color: #3a3a33;
}