﻿/*--------FORM STYLES--------------------*/
.form-sect { 
	width: 100%; padding: 60px max(5vw, calc(50vw - 600px)); 
	background: #fff; 
	display: flex; flex-direction: column; align-items: stretch; 
}
.form-sect .content-sect { width: 100%; padding: 0; }

form.cactus-form { 
	position: relative; 
	display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start; 
	column-gap: 24px; row-gap: 2px; 
}
form.cactus-form .formrow { width: 100%; display: flex; justify-content: center; }
form.cactus-form .formrow-captcha { width: 100%; display: flex; flex-direction: column; align-items: center; margin-top: 8px; }

form.cactus-form .smcol { 
	width: calc(33.333333% - 18px); 
	display: flex; flex-direction: column; align-items: flex-start; 
}

form.cactus-form .subtitle { 
	width: 100%; margin-top: 32px; 
}

form.cactus-form label { 
	width: 100%; padding: 12px 0 4px 0; box-sizing: border-box; margin-top: 4px; 
	color: #000; font-size: 17px; text-transform: uppercase; 
	line-height: 1.4; letter-spacing: .25px; 
}
form.cactus-form select, form.cactus-form input, form.cactus-form input[type="text"], form.cactus-form input[type="email"], form.cactus-form textarea, form.cactus-form #CaptchaAnswer {
	width: 100%; height: 42px; padding: 12px 10px; box-sizing: border-box; 
	color: #000; font-size: 15px; 
	line-height: 1.4; letter-spacing: .5px; 
	border: none; outline: 1px solid #000; 
}
form.cactus-form textarea { height: 120px; }
form.cactus-form select { background: #fff; border-right: 10px solid #fff!important; }

form.cactus-form a:not(.invisilink) { cursor: pointer; margin: 20px 0 0 0; }
form.cactus-form .CaptchaMessagePanel { font-family: 'darkmode-on', sans-serif!important; color: #fff; }
form.cactus-form #CaptchaAnswer { width: 180px!important; }
form.cactus-form div.CaptchaWhatsThisPanel a { 
	font-family: 'darkmode-on', sans-serif!important; transition: .15s ease all; 
}
form.cactus-form div.CaptchaWhatsThisPanel a:hover { text-decoration: underline; }
form button[type="submit"], form input[type="submit"] { cursor: pointer; border: none; }

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 750px) {
	form.cactus-form .smcol { width: 100%; }
}
