.ww-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1rem;
}

.ww-form--paper {
	box-sizing: border-box;
	max-width: 8.5in; 
}

@media screen and (min-width: 7.5in) {
    .ww-form--paper {
		padding: 0.5in;
        border: 1px solid lightgrey;
        box-shadow: 1px 1px 1px #999;
    }
}

.ww-form__content {
	display: inline-block;
	justify-content: space-evenly;
	margin-top: 0.667rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.ww-form__content--flex {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ww-form__content--center {
	align-self: center;
}

.ww-form__content--half {
	align-items: flex-end;
	flex-basis: 50%;
	flex-grow: 1;
}

.ww-form__content--full {
	flex-basis: 100%;
}

.ww-form__content--tall > * + *:not([role=alert]) {
	margin-top: 0.5rem;
}

.ww-form__content--full * + .ww-btn {
	margin-top: 5px;
}

.ww-form__content--help {
	flex-basis: 100%;
	margin-top: 0;
	color: rgba(0,0,0,0.6);
}

.ww-form__textarea {
	min-width: 100%;
	font-family: inherit;
	font-size: 12px;
	resize: none;
	border: 1px solid #ccc;
	padding: 1rem;
	box-sizing: border-box;
}

.ww-form__textarea[disabled] {
	background: transparent;
}