/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 01-ago-2017, 11:12:55
    Author     : Admin
*/

*{
    color: #262626;
    font: 12px sans-serif;
}
body{
    background: #f4f4f4;
}
form.contacto{
    margin: 25px 0 auto;
    width: 440px;
}
form.contacto fieldset{
    background: white;
    border: 1px solid #e1e1e1;
    box-shadow: 0 0 10px #dadada;
    -webkit-box-shadow: 0 0 10px #dadada;
    -moz-box-shadow: 0 0 10px #dadada;
    padding: 25px;
}
form.contacto fieldset > div{
    clear: both;
    margin-bottom: 20px;
    overflow: hidden;
}
form.contacto fieldset div label{
    display: block;
    float:  left;
    margin-right: 15px;
    margin-top: 5px;
    text-align: right;
    text-transform: uppercase;
    width: 84px;
    font-weight: bold;
    color: black;
    font-size: 10px;
}
form.contacto input[type="text"], form.contacto textarea{
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    color: #626262;
    display: block;
    float: left;
    padding: 8px;
    resize: none;
    width: 265px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
form.contacto input[type="text"]:focus, form.contacto textarea:focus{
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    outline: none;
}
form.contacto .ultimo{
    margin-bottom: 0px;
    position: relative;
}
form.contacto button{
    background: #444444;
    border: 0 none;
    color: #ffffff;
    float: right;
    font-weight: bold;
    height: 32px;
    padding:  0 10px;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
}
form.contacto button:hover{
    background: #6a6a6a;
}
.hide{
    display: none;
}
.ajaxgif{
    position: absolute;
    right: 150px;
    top: 5px;
}
.msg{
    color: white;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: absolute;
    right: -155px;
    text-transform: uppercase;
    min-width: 121px;
}
.msg_ok{
    background: #589d05;
}
.msg_error{
    background: red;
}
    