﻿.print-form {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}
.print-form > .print-form-field {
    width: calc(100% - 4em);
    margin: 1em 2em;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-content: start;
    justify-content: start;
}
.print-form > .print-form-field > .form-field-label {
    font-size: 0.5em;
    margin: 0;
    color: sienna;
}
.print-form > .print-form-field > .form-field-input {
    width: 100%;
    border-radius: 1em;
    padding: 0.5em;
    color: sienna;
    border-color: sienna;
    background-color: tan;
}
.print-form > .print-form-field > .form-field-input::placeholder {
    color: peru;
}

.print-form > .print-form-field > .form-field-checkbox {
    appearance: none;
    cursor: pointer;
    margin: 0;
    height: 2em;
    width: 2em;
    border-radius: 1em;
    box-sizing: content-box;
    border: 1px solid sienna;
    background-color: tan;
}
.print-form > .print-form-field > .form-field-checkbox:checked {
    background-color: sienna;
}