body {
    background: rgba(46, 183, 171, 0.1) ;
	z-index: 0;
}
.form-wrapper {
	font: 16px 'Google Sans';
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 251, 251, 0.2);
    padding: 30px;
	border-radius:5px;
}

.contact-form {
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    padding: 0 30px 30px;
    box-shadow: 0 3px 5px rgba(35, 152, 171, 0.4);
    border-radius: 10px;
}

.contact-form__title, .contact-form__title__form {
    box-sizing: border-box;
    margin: 0 -30px 30px;
	padding: 1px;
    width: calc(100% + 60px);
    line-height: 1.5;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background-color:
        #2eb7ab;
    color: #fff;
}

.contact-form__title {
		border-radius: 10px 10px 0 0;
		padding: 15px 30px;
}

.contact-form__description {
    text-align: center;
    font-size: 17px;
}

.contact-form__input-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-form__input {
	font: 500 16px/1.2 'Google Sans';
    width: 100%;
    height: 50px;
    padding: 0 15px;
    box-sizing: border-box;
    border: 1px solid #e2e2e2;
    background: #fbfbfb;
    border-radius: 5px;
    -webkit-appearance: none;
}

.contact-form__text {
    height: 80px;
    padding: 15px;
    resize: vertical;

}

.contact-form__checkbox {
    -webkit-appearance: checkbox;
    width: 15px;
    height: 15px;
    margin: 0 15px 0 0;
}

.contact-form__checkbox-label {
    width: calc(100% - 30px);
    font-size: 13px;
}

.contact-form__checkbox-label a {
    text-decoration: none;

}

.contact-form__file {
    padding: 12px 15px;
}

.contact-form__error {
	font: 14px 'Google Sans';
	color:red;
    width: 100%;
	padding-top:2px;
}

.contact-form__button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2eb7ab;
    max-width: 160px;
    margin: 30px auto 0;
    border-radius: 5px;
    height: 44px;
    color: #fff;
    font: 600 16px/1.2 'Google Sans';
	cursor: pointer;
    transition: .3s;
    padding: 2px 0 0 0;
	box-shadow: 0 2px 0 #2d9188;
	border: 1px solid #2d9188;
}
.contact-form__button:active {
  box-shadow: 0 1px 0 #2d9188;
  transform: translateY(1px);
}
.contact-form__button:hover {
   background: #29ab9f;
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 15px;
    }

    .contact-form {
        padding: 0 15px 15px;
    }

    .contact-form__title {
        margin: 0 -15px 30px;
        padding: 15px 30px;
        width: calc(100% + 30px);
        font-size: 18px;
    }

    .contact-form__checkbox {
        margin-top: 1px;
    }

    .contact-form__checkbox-label {
        font-size: 14px;
    }


	.contact-form__input-wrapper {
        align-items: flex-start;
    }

}