/*
Theme Name: voicebox
*/

.form-row {
	display: flex;
    flex-flow: column nowrap;
}

.input-wrapper > span {
	display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2px;
    position: relative;
}

.input-wrapper input {
	border: 2px solid #e5e5e5;
	height: 51px;
    margin: 4px;
    padding: 16px;
    border-radius: 4px;
}

.input-wrapper input.error {
	border: 2px solid #d11818;
}

.form-row button[type=submit] {
	background-color: #939;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border: 0;
    text-align: center;
    cursor: pointer;
	transition: all;
    transition-duration: 300ms;
	height: 51px;
    margin: 4px;
    padding: 16px;
    border-radius: 4px;
}


.chech-wrapper > span {
	display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2px;
    position: relative;
}

.chech-wrapper input[type=checkbox] {
	height: 16px;
	border: 2px solid #e5e5e5;
	margin: 4px;
    padding: 16px;
    border-radius: 4px;
}

a.violet-and-white {
	background-color: #939;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 17px;
    border: 0;
    text-align: center;
    cursor: pointer;
	height: 51px;
    display: block;
    padding: 16px;
    border-radius: 4px;
    width: max-content;
}

.center a.violet-and-white {
	margin: auto;
}

@media (min-width: 1024px) {
	.form-row {
		flex-flow: row nowrap;
		margin: 12px 0;
	}
}