
.g-form {
    font-family: arsenal_f;
    color: #d89a35;
	width: 100%;
	max-width: 70vw;
	padding: 50px;
	/* background: #1c1e21; */
	/* box-shadow: 0 0 20px rgba(0,0,0, .2); */
    margin: 0 auto;
}
@media (max-width: 700px) {
    .g-form {
        max-width: 100vw;
        }
}
.g-form_p_img-logo {
    text-align: center;
}
.g-form_img-logo {
    width: 100%;
    max-width: 300px;
    
}
.g-form__title {
	text-align: center;
	margin: 15px 0 0 0;
	font-weight: 300;
	font-size: 1.2rem;
	/* text-transform: uppercase; */
	line-height: 1.5;
}
.g-form__title a {
	color: #e8cd96;
}

.g-form__preloader 
{ 
	height: 2px;
	width: 100%;
	position: relative;
	margin: 15px 0;
	opacity: 0;
}
.g-form__preloader:before {
	background: #d89a35;
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	width: 50px;
	height: 2px;
	-webkit-animation: smartlidPreloader 3s infinite;
	animation: smartlidPreloader 3s infinite;
}

.g-form__input-wrapper {
	margin-bottom: 15px;
	border: none;
	padding: 0;
	width: 100%;
}

.g-form__input-wrapper input, .g-form__input-wrapper textarea{
	width: 100%;
	padding: 0 15px;
	border: 1.5px solid #d899353f;
	border-radius: 3px;
	background: #1b1717;
	height: 50px;
	font: 1rem 'Roboto', sans-serif;
	outline: none;
	color: #d2d2d3; 
	font-weight: 300;
}
.g-form__input-wrapper textarea {
	padding: 15px;
	height: 100px;
	resize: none;
}
.g-form__input-wrapper input:focus, .g-form__input-wrapper textarea:focus {
	border-color: #d89a35;
}

.g-form__input-wrapper_hidden {
	display: none;
}
.g-form__button-wrapper {
	display: flex;
	justify-content:space-around;
}
.g-form__button {
	background: #d89a35;
	outline: none;
	border: none;
	border-radius: 25px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px;
	font: 400 .9rem 'Roboto', sans-serif;
    font-weight: 600;
	color: #1b1717;
	/* text-transform: uppercase; */
	cursor: pointer;
	transition: .3s;
	box-shadow: 0 3px 10px rgba(0,0,0, .2);
    margin: 15px 0 0 0;
}

.g-form__button:hover {
	transition: .3s;
	box-shadow: 0 1px 1px rgba(0,0,0, .2);
	color: #d89a35;
	background: #1b1717;
    border: .5px solid #d89a35;;
    /* text-decoration: underline; */
}

.form_PK {
    text-align: center;
}
.form_PK_a {
    color: #d89a35;
    text-decoration: underline;
}

@media (max-width: 480px) {
	
	.g-form {
		padding: 30px;
	}
	.g-form__title {
		font-size: 1rem;
	}
}

@media (max-width: 359px) {
	.g-form {
		padding: 15px;
	}
}

@-webkit-keyframes smartlidPreloader {
	0% {
		left: 0; }
		50% {
			left: -webkit-calc(100% - 50px);
			left: calc(100% - 50px); }
			100% {
				left: 0%; } 
			}

			@keyframes smartlidPreloader {
				0% {
					left: 0; }
					50% {
						left: -webkit-calc(100% - 50px);
						left: calc(100% - 50px); }
						100% {
							left: 0%; } 
						}