/* Importación de fuentes de google fonts */ 
@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

body{
    height: 100%; 
    font-family: 'Noto Sans', sans-serif;
    background-color: #f0ebf8; 
}

.contact_form{  
    width: 460px; 
    height: auto;
    margin: 80px auto;
    border-radius: 10px;  
    padding-top: 30px;
    padding-bottom: 20px;  
    background-color: #fff; 
    padding-left: 30px; 
}

input, select{
    background-color: #fff; 
    width: 408px; 
    height: 40px; 
    border-radius: 5px;  
    border-style: solid; 
    border-width: 1px; 
    border-color: #373737; 
    margin-top: 10px;  
    padding-left: 10px;
    margin-bottom: 20px; 
}

select{
    width: 420px;
}

textarea{
    background-color: #fff; 
    width: 405px; 
    height: 150px; 
    border-radius: 5px;  
    border-style: solid; 
    border-width: 1px; 
    border-color: #373737; 
    margin-top: 10px;  
    padding-left: 10px;
    margin-bottom: 20px; 
    padding-top: 15px; 
}

label{
    display: block; 
    float: center;  
}

button{
    height: 45px; 
    padding-left: 5px;
    padding-right: 5px;   
    margin-bottom: 20px; 
    margin-top: 10px;   
    text-transform: uppercase;
    background-color: #373737; 
    border-color: #373737; 
    border-style: solid; 
    border-radius: 10px;  
    width: 420px;   
    cursor: pointer;
}

button p{
    color: #fff; 
}

span{
    color: #373737; 
}

.aviso{
    font-size: 13px;  
    color: #0e0e0e;  
}

h1{
    font-size: 39px;  
    text-align: letf; 
    padding-bottom: 20px; 
    color: #429722;
}

h3{
    font-size: 16px; 
    padding-bottom: 30px;
    color: #0e0e0e;   
}

p{
    font-size: 14px; 
    color: #0e0e0e; 
}

.titulo{
    font-weight: bold;
    color: #429722;
}

.titulo2{
    font-weight: bold;
    color: #dd4e4e;
}

::-webkit-input-placeholder {
    color: #a8a8a8;
}

::-webkit-textarea-placeholder {
    color: #a8a8a8;
}

.formulario input:focus, select:focus{
    outline:0;
    border: 1px solid #429722;
}

.formulario textarea:focus{
    outline:0;
    border: 1px solid #429722;
}

.formulario {
    display: inline-block;
    margin-right: 18px;
}
    
.formulario input, select {
    margin-right: 5px;
}
    
    
.formulario input[type=radio]{
    position: absolute;
    opacity: 0;
}

.formulario input[type=radio] + label:before{
    content: '';
    background: #F4F5F8;
    border-radius: 100%;
    border: 1px solid #a6aec6;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -.2em;
    margin-right: .5em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    display: inline-block;
    vertical-align: middle;
}

.formulario input[type=radio]:checked + label:before{
    background-color: #429722;
    box-shadow: inset 0 0 0 4px #F4F5F8;
}

.formulario label {
    vertical-align: middle;
    line-height: 32px;
}
    
@media (max-width: 800px) {
    body {
        min-height: 100vh;
        max-width: 400px; 
        margin: 0 auto;
        background-color: #f0ebf8; 
    }

    h1{
        font-size: 29px;  
        text-align: letf; 
        padding-bottom: 5px; 
        color: #429722;
    }

    h3{
        font-size: 15px; 
        padding-bottom: 30px;
        color: #0e0e0e;   
    }

    .contact_form{  
        width: 300px; 
        height: auto;
        border-radius: 10px;  
        padding-top: 30px;
        padding-bottom: 20px;  
        background-color: #fff; 
    }

    button{
        height: 45px;
        padding-left: 5px;
        padding-right: 5px;   
        margin-bottom: 20px; 
        margin-top: 10px;   
        text-transform: uppercase;
        background-color: #373737; 
        border-color: #373737; 
        border-style: solid; 
        border-radius: 10px;  
        width: 265px;   
        cursor: pointer;
    }

    input, select{
        background-color: #fff; 
        width: 255px; 
        height: 40px; 
        border-radius: 5px;  
        border-style: solid; 
        border-width: 1.5px; 
        border-color: #373737; 
        margin-top: 10px;  
        padding-left: 10px;
        margin-bottom: 20px; 
    }

    select{
        width: 267px;
    }

    .formulario input:focus, select:focus{
        outline:0;
        border: 1.5px solid #429722;
    }
    

}