.t-32_form-1
{
	width: 100%;
}
.t-32_form-1::before
{
	content: '';
	display: block;
	background: linear-gradient( to bottom , transparent , #1f1f1f );
	width: 100%;
	height: 50px;
}
.t-32_form-2
{
	background: #1f1f1f;
	width: 100%;
}

.t-32_form-not-account
{
	width: 100%;
	padding: 200px 20px;
	color: #ccc;
	font-size: 18px;
	text-align: center;
}

.t-32_form-center
{
	margin: auto;
	padding: 100px 20px;
	width: 100%;
	max-width: 600px;
}

.t-32_form-label
{
	display: block;
	padding: 0 0 5px 0;
	color: #c4af94;
	font-size: 16px;
	text-align: center;
}
.t-32_form-error
{
	display: none;
	background: #111;
	margin: 4px 0 0 0;
	color: #f83535;
	padding: 10px;
	font-size: 16px;
	text-align: center;
}
.t-32_form-textarea
{
	background: #3b3a3f;
	overflow: hidden;
	resize: none;
	color: #eee;
	margin: 0;
	padding: 12px 15px;
	width: 100%;
	box-sizing: border-box;
	border: 0px;
	font-size: 18px;
	border-radius: 8px;
}

.t-32_form-submit-block
{
	position: relative;
	margin: 20px 0 0 0;
}
.t-32_form-submit
{
	background: #8a0606;
    cursor: pointer;
	color: #eee;
	border: 0;
	padding: 12px 0;
	width: 100%;
	font-size: 18px;
    border-radius: 8px;
	transition: 0.5s;
}
.t-32_form-submit:hover
{
	color: #fff;
	background: #6e0101;
}

.t-32_form-submit-loader
{
	display: none;
}
.t-32_form-submit-loader div
{
	background: #6e0101;
	position: absolute;
	padding: 5px 0;
	width: 100%;
	height: 100%;
    border-radius: 5px;
	display: flex;
	justify-content: center;
}
.t-32_form-submit-loader div span
{
	background: #fff;
	width: 6px;
	height: 100%;
	margin: 0 3px;
	animation: form-loader 0.8s infinite ease-in-out;
}
.t-32_form-submit-loader div span:nth-child( 2 )
{
	animation-delay: -0.7s;
}
.t-32_form-submit-loader div span:nth-child( 3 )
{
	animation-delay: -0.6s;
}
@keyframes form-loader
{
	0% , 40% , 100%
	{
		transform: scaleY( 0.4 );
	}
	20%
	{ 
		transform: scaleY( 1.0 );
	}
}