input{
	width:100%;
	border: none;
    height: 50px;
    font-size: 14px;
    border-radius: 6px;
    background-color: rgba(247,247,249,.7);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark-color(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    -webkit-appearance: textfield;
    background-color: -internal-light-dark-color(white, black);
    -webkit-rtl-ordering: logical;
    cursor: text;
    transition: all .3s;
    border: 1px solid var(--cinza-claro);
	
}
input:focus{
	border-color: #64BCBB !important;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(100, 188, 187,.6) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(100, 188, 187,.6) !important;
}



select{
	

    width: 90%;
	border: none;
    height: 50px;
    font-size: 14px;
    border-radius: 6px;
    background-color: rgba(247,247,249,.7);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark-color(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    -webkit-appearance: textfield;
    background-color: -internal-light-dark-color(white, black);
    -webkit-rtl-ordering: logical;
    cursor: text;
    transition: all .3s;
    border: 1px solid var(--cinza-claro);
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px !important;
   
}
input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-color:#e9e9e9;
    
}
input[type=checkbox]:checked:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-color: #64bcbb;
    
}
input[type=checkbox]:checked:after {
    content: "";
   display: block;
   width: 9px;
   height: 15px;
   border: solid white;
   border-width: 0 3px 3px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   position: absolute;
   top: 5px;
   left: 10px;
}