import theme from "../../theme"; export const style = { SECTION: { background: theme.foregroundColor, }, SECTION_INNER: { margin: "0 auto", mobile: { desktop: { padding: 100, width: 550, }, smartphone: { padding: 30, width: "100%", }, }, }, HEADLINE: { fontFamily: theme.fontFamily, fontWeight: "bold" as "bold", padding: 10, textAlign: "center", mobile: { desktop: { fontSize: "32pt", }, smartphone: { fontSize: "26pt", }, }, }, TEXT: { fontFamily: theme.fontFamily, fontSize: "13pt", lineHeight: "18pt", padding: "20px 0", }, FORM_FIELD: { style: { marginTop: 15, maxWidth: "100%", // paddingRight: 20, }, inputStyle: { width: "100%", padding: 15, border: "1px solid #DDD", borderRadius: 4, }, labelStyle: { fontFamily: theme.fontFamily, fontSize: "10pt", textAlign: "left", padding: 5, }, }, BUTTON: { style: { display: "inline-block", padding: 15, marginTop: 40, border: "none", backgroundColor: theme.backgroundColor, width: "100%", borderRadius: 3, cursor: "pointer", }, caption1: { color: theme.foregroundColor, fontWeight: "bold" as "bold", fontSize: "10pt", }, }, };