body {
	background-image: url("/static/contact/shapes.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

nav {
	position: fixed;
	background: transparent !important;
}

nav.opaque {
	background: #000 !important;
}

footer {
	background: #000;
	border-color: #333;
	color: #CCC;
}

footer .grid a:not(.d-link), footer .grid p {
	color: #666;
}

footer .grid a:not(.d-link):hover {
	color: #CCC;
}

footer svg {
	color: #666;
	transition: color 0.2s;
}

footer svg:hover {
	color: var(--color-secondary);
}

.d-message {
	border-color: #555;
	background: #000;
	color: #999;
}

.contact-container-wrapper {
	display: flex;
	min-height: 100vh;
	background: rgba(0,0,0,0.7);
	box-sizing: border-box;
	padding: 120px 0 80px;
}

.contact {
	width: 500px;
	margin: auto;
}

form {
	width: 100%;
}

.contact .d-heading {
	color: #FFF;
}

.contact form > * {
	margin-bottom: 20px;
}

.contact form > *:nth-last-child(1) {
	margin-bottom: 0;
}

.contact form .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 20px;
}

.contact form input, .contact form textarea {
	display: block;
	width: 100%;
	border: 0;
	box-sizing: border-box;
	padding: 20px 0;
	text-indent: 20px;
}

.contact form textarea {
	padding: 20px;
	text-indent: 0;
}

.contact form input[hidden] {
	display: none;
}

.contact form input::placeholder, .contact form textarea::placeholder {
	color: #BBB;
}

.contact form textarea {
	min-height: 200px;
	max-height: 400px;
	border: 0;
	padding: 0;
	margin-bottom: 15px;
	resize: vertical;
}

.contact form .textarea-container {
	border: 0;
	background: #FFF;
	padding: 20px;
}

.contact form button {
	width: 100%;
	font-weight: 600;
	padding: 10px;
}

.contact form #id_verification_code {
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	padding: 10px 0;
	margin: 0 0 10px;
	text-indent: 10px;
}


