﻿.form_campo
{
	border:1px solid #cccccc;
	min-width: 400px;
}
.form_campo_peq
{
	border:1px solid #cccccc;
	min-width: 200px;
}
.button_pt, .buttonclean_pt {
    background-size: 79px 29px;
    background-color: var(--main-bg-color);
    background-repeat: no-repeat !important;
    color: #fff;
    padding: 0px!important;
}

.button_pt {
    content:'Enviar';
    margin-right: 10px !important;
}

    .button_pt:hover {
        background-color: #ccc;
    }
.buttonclean_pt {
    content: 'Limpar';
}

    .buttonclean_pt:hover {
        background-color: #ccc;
    }
		
form div.enviar 
{
	text-align: left;
	width:79px;
    height: 29px;
	padding-top: 1em;
	float:left;
	background: none repeat scroll 0% 0% transparent;
	border: 0px none;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 100%;
	margin: 0px;
    margin-right: 10px;
	outline: medium none;
	vertical-align: baseline;
}
    form div.enviar input:not([type=submit]):focus, form div.enviar input:not([type=reset]):focus {
        width: 79px;
        height: 29px;
        line-height: 31px;
        border: none !important;
    }
form div.enviar input:not([type=submit]), form div.enviar input:not([type=reset]) {
    width:79px;
    height: 29px;
    line-height:31px;
}

form input:not([type=submit]), form input:not([type=reset]),form textarea 
{
	font-size: 1rem;
	letter-spacing: .05em;
	line-height: 1rem;
	display: block;
	padding: 0.5em;
	width: 90%;
	margin-bottom: 1em;
}
form input:focus {
    content: '';
}
form, form input, form label,form textarea 
{
	background: transparent;
	border: 0;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	outline: none;
	padding: 0;
	vertical-align: baseline;
    padding-bottom: 10px;
}

form input[placeholder],
    [placeholder],
    *[placeholder] {
      color: #000000 !important;
    }

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #000000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #000000;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #000000;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #000000;
}
 input:required:invalid, input:focus:invalid {
    background-image: url("../images/form/invalid.png");
    background-position: right top;
    background-repeat: no-repeat;
  }
  input:required:valid {
    background-image: url("../images/form/valid.png");
    background-position: right top;
    background-repeat: no-repeat;
  }