.spcf-form-wrapper {
	max-width: 560px;
	margin: 0 auto;
	color: #111;
}

.spcf-notice {
	padding: 0.9em 1.1em;
	margin-bottom: 1.5em;
	border: 1px solid #111;
	font-size: 0.95em;
}

.spcf-notice-success {
	background: #f5f5f5;
}

.spcf-notice-error {
	background: #fff;
	border-color: #000;
	font-weight: 600;
}

.spcf-thankyou {
	padding: 1.4em 1.1em;
	border: 1px solid #111;
	background: #f5f5f5;
	font-size: 1.05em;
	text-align: center;
}

.spcf-field {
	margin: 0 0 1.3em;
}

.spcf-field label {
	display: block;
	margin-bottom: 0.4em;
	font-size: 0.9em;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.spcf-field input[type="text"],
.spcf-field input[type="email"],
.spcf-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.65em 0.75em;
	border: 1px solid #111;
	background: #fff;
	color: #111;
	font-family: inherit;
	font-size: 1em;
	border-radius: 0;
}

.spcf-field input:focus,
.spcf-field textarea:focus {
	outline: none;
	border-width: 2px;
	padding: calc(0.65em - 1px) calc(0.75em - 1px);
}

.spcf-field textarea {
	resize: vertical;
}

.spcf-hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.spcf-submit button {
	background: #111;
	color: #fff;
	border: 1px solid #111;
	padding: 0.75em 2em;
	font-size: 1em;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.spcf-submit button:hover,
.spcf-submit button:focus {
	background: #fff;
	color: #111;
}

.spcf-submit button:disabled {
	cursor: default;
}

.spcf-submit button.spcf-loading {
	position: relative;
	color: transparent;
}

.spcf-submit button.spcf-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spcf-spin 0.6s linear infinite;
}

@keyframes spcf-spin {
	to {
		transform: rotate( 360deg );
	}
}
