.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.simple-card {
    margin-bottom: 2rem;
    margin-top: 1rem;
    background: var(--color-green-light);
    border-radius: 8px;
    border: 1px solid transparent;
}

.simple-card * {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.simple-card-title {
    background-color: var(--color-gold-medium-light);
    padding: 1.2rem 1.2rem;
    margin: 0;
    color: var(--color-green-dark);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.simple-card-content {
    padding: 0.25rem 2rem;
}

.form-container {
    background: var(--color-gold-medium-light);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 2em;
}

.form-container > h2 {
    margin-top: 0.5rem;
    text-align: center;
}

.form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

label {
    min-width: 100px;
    font-weight: 600;
    color: #333;
    padding-top: 0.5rem; /* Aligns with input padding */
    flex-shrink: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-group {
    text-align: center;
    margin-top: 2rem;
}

button {
    background: var(--color-green-subhead);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background: var(--color-green-dark);
}

/* Mobile responsiveness for form layout */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    label {
        min-width: unset;
        padding-top: 0;
        margin-bottom: 0.25rem;
    }
}