.form-as-list {
    list-style-type: none;
    padding:0;
    position: relative;
}
.form-label-tag {
    position: absolute;
    top:-12px;
    left:20px;
    font-size:14px;
    padding: 0 4px;
}
.form-field {
    position: relative;
    padding: 0 12px;
}
.form-field:hover .form-label-tag {
    font-size: 15px;
    color:blue!important;
}
.form-field:active .form-label-tag {
    font-size: 15px;
    color:blue!important;
}
@media only screen and (max-width: 414px) {
    .form-label-tag {
	font-size: 12px;
    }
    .form-field:hover .form-label-tag {
	font-size: 13px;
    }
    .form-field:active .form-label-tag {
	font-size: 13px;
    }
}
input,
select,
textarea
{
    width: 100%;
    height: 40px;
    padding: 0 8px;
    box-sizing: border-box;
    line-height: 32px;
    border-radius: 2px;
    border: solid 1px rgb(118, 118, 118);
    background: #fff;
}
textarea {
    height: 120px;
    resize: none;
}
    
