* {
	box-sizing: border-box;
}

body {
	background-color: #29134e;
	background-image: url(/ui/images/contact/bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

p {
	margin: 0;
}

input, button {
	outline: none;
}

.contact-layout {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

.left {
	width: 65%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.left .genie {
	height: 100vh;
}

.right {
	width: 35%;
	display: flex;
	flex-direction: column;
	background-color: #100125;
	min-height: 100vh;
}

.right .info {
	width: 100%;
	background-color: #e1d74c;
	padding: 50px 25px 20px;
}

.right .contact-details {
	margin-top: 15px;
	color: #fff;
}

form {
	padding: 25px 25px;
	width: 100%;
}

form.inactive {
	opacity: 0.5;
	pointer-events: none;
}

.input-field {
	margin-bottom: 25px;
}

.input-field input, .input-field textarea {
    width: 100%;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    max-width: 100%;
    min-width: 100%;
}

.input-field textarea {
	background-color: #29134e;
	color: #fff;
}

.input-field button {
    background-color: #e1d74c;
    color: #fff;
    display: block;
    margin: 0 auto;
    padding: 12px 15px;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    width: 120px;
}

.error-message {
    color: rebeccapurple;
    font-size: 14px;
    padding-left: 14px;
    padding-top: 2px;
    display: none;
}

.input-field.error {
	margin-bottom: 15px;
}

.input-field.error .error-message {
	display: block;
}

.toast-message {
	font-family: typewriter;
	line-height: 1.1;
}

.toast-success {
    background-color: #007300;
}

.toast-error {
    background-color: #bb0900;
}

@media (max-width: 992px) {
	.left {
		width: 100%;
	}

	.left .genie {
		height: auto;
    	width: 100%;
	}

	.right {
		width: 100%;
	}
}