form {
	padding-bottom: 30px;
}
.empresa, .questao {
	max-width: 60%;
	margin: auto;
	margin-bottom: 15px;
	padding: 25px;
	line-height: 2;
	background-image: linear-gradient(to bottom right, #91b9a6, #e4fff7);
	border-radius: 4px;
}
.empresa, .questao {
    transition: box-shadow 0.5s;
}
.empresa:hover, .questao:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.empresa__wrapper {
	margin-bottom: 8px;
    font-size: clamp(0.75rem, 1.75vw, 1rem);
    font-weight: bolder;
}
.empresa__wrapper label, .questao label {
	display: block;
}
.empresa__wrapper .obrigatorio, .questao p::after {
	content: "*";
	font-weight: bold;
    color: red;
}
.empresa__input {
	padding: 8px;
	width: 100%;
    border: 1px solid rgba(0,0,0,0);
	font-size: clamp(0.75rem, 1.5vw, 1rem);
	text-transform: uppercase;
	border-radius: 16px;
}
.empresa__input:hover {
	border: 1px inset #ddd;
}
.empresa__input input[type=text]/*, input[type=email], input[type=tel], input[type=password]*/ {
	padding: 15px;
	border-radius: 20px;
}
.questao p {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
}
.questao label {
	margin-bottom: 10px;
    font-size: clamp(0.75rem, 1.75vw, 1rem);
    transition: color 0.5s;
}
.questao label:hover {
	color: rgb(196,0,30);
}
.questao input {
	display: none;
}
.questao input + label:before {
	display: inline-block;
    content: "";
	margin-right: 8px;
	margin-bottom: 3px;
	width: 16px;
	height: 16px;
	border: 1px solid #ddd;
    vertical-align: middle;
    background-color: #fff;
	border-radius: 10px;
}
.questao input:checked + label::before {
	padding: 2px;
	margin-right: 6px;
	margin-bottom: 2px;
    border: none;
    background-color: green;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 8 8'%3E%3Cg class='nc-icon-wrapper' stroke-width='1' fill='%23555555'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' data-cap='butt' d='M2.83 4.72l1.58 1.58 2.83-2.83'/%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
	.empresa, .questao {
		max-width: 95%;
		padding: 15px;
	}
	.empresa__input {
		display: block;
		margin: auto;	
		max-width: 100%;
		padding: 6px;
	}
    .questao input + label:before {
        width: 12px;
        height: 12px;
    }
    .questao input:checked + label::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 8 8'%3E%3Cg class='nc-icon-wrapper' stroke-width='1' fill='%23555555'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' data-cap='butt' d='M2.83 4.72l1.58 1.58 2.83-2.83'/%3E%3C/g%3E%3C/svg%3E");
    }
	.controles {
		width: 140px;
	}
}