



.inputs{
	position: relative;
	width: 100%;
	height: 60px;

}

.inputs select{
	width: 100%;
	border: 0px;
	background: transparent;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	outline: none;
}


.inputs select option{
	color: #000;
}



.inputs .input-control{
	width: 100%;
	border: 0px;
	background: transparent;
	color: #fff;
	outline: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding-bottom: 5px;
	font-size: 15px;
	position: absolute;
	z-index: 2;
}

.inputs-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2px 10px 0 0px;
	transition: all 200ms;
	color: #fff;z-index: 1;
}



.input-control:focus +  .inputs-placeholder,
.input-control:valid +  .inputs-placeholder {
	font-size: 75%;
	transform: translate3d(0, -120%, 0);
}


.linha{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}

.inputs textarea{
	resize: none;
	outline: none;
	height: 150px;
}

button{
	width: 100%;
	height: 40px;
	text-align: center;
	background-color: rgba(250, 160, 30, 1);
	color:#fff;
	font-family: FlamaCondensedMedium;
	border: 0px;
	font-size: 18px;
	margin-top: 10px;
	transition: all 0.2s ease-in-out;
	outline: none;
	border-radius: 10px;
	margin-top: 20px;
}


@media only screen and (min-width: 500px) {
    button{
        width: 250px;
        height: 50px;
        cursor: pointer;
        margin-top: 50px;
        background-color: rgba(250, 160, 30, 0.8);
    }

    button:hover{
        font-size: 18.5px;
        background-color: rgba(250, 160, 30, 1);
    }
}


@media only screen and (min-width: 1000px) {
	.linha{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
	}

	.linha  .inputs{
		width: calc(50% - 20px);
	}
}
