* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    padding: 20px;
    background: #efeff0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
}

.logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 30px;
}

h1 {
    margin-bottom: 30px;
    font-size: 24px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    background: white;
    cursor: pointer;
}

select {
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
}

input:focus,
select:focus {
    outline: 1px solid #229464;
}

input.input-error {
    border-color: #c00;
    outline-color: #c00;
}

.field-error {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #c00;
}

button {
    padding: 10px 20px;
    border: 1px solid #229464;
    background: #229464;
    color: white;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.btn-secondary {
    background: white;
    color: #229464;
    border: 1px solid #229464;
}

/* Preview: light background so you see how the signature is intended; in Gmail etc. dark mode this may still be inverted */
#signatureOutput {
    border: 5px solid #ffff7b;
    padding: 20px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    background-color: #ffffff;
}

.signature-note {
    margin-top: 12px;
    font-size: 12px;
    color: #666;
}
