/*
 * For the Greenhouse job application page.
 * We're embedding an iframe from a Greenhouse, so it's tricky to adjust its style using our code.
 * Instead, we're pointing Greenhouse to this CSS file, and having it apply the style to the job application.
 *
 * "Custom CSS URL" in https://app8.greenhouse.io/configure/dev_center/config should point to this file.
 */
#app_body {
	max-width: none;
}

#application {
	background-color: transparent;
	max-width: none;
	padding: 0;
}

/* The inputs in the custom fields section are supposed to be as wide as the form.
 * We're overriding Greenhouse's default width, which sets a specific number of pixels. */
#custom-fields div.field input[type="text"] {
	box-sizing: border-box;
	width: 100%;
}
