/* ==========================================
   MAIS EBOOK - FORMULÁRIO DE CONTATO
========================================== */

.contato{

    padding:80px 20px;

}

.container1{

  
    margin:auto;
    background:#f4e5dd;
    padding:1.8rem 1.8rem;
}

.tag{

    display:inline-block;
    background:#ff6a00;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:20px;

}

.campo{

    margin-bottom:25px;

}

label{

    display:block;
    margin-bottom:8px;
    font-weight:bold;
    color:#333;

}

input,
textarea{

    width:100%;
    padding:16px;
    border:2px solid transparent;
    border-radius:10px;
    background:#ffffff;
    color:#333;
    font-size:16px;
    transition:.3s;

}

textarea{

    resize:vertical;
    min-height:180px;

}

input:focus,
textarea:focus{

    border-color:#ff6a00;
    outline:none;
    box-shadow:0 0 12px rgba(255,106,0,.35);

}

button{

    width:100%;
    padding:18px;
    border:none;
    border-radius:10px;
    background:#ff6a00;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;

}

button:hover{

    background:#ff8a33;
    transform:translateY(-2px);

}

button:active{

    transform:scale(.98);

}

::placeholder{

    color:#888;

}

/* RESPONSIVO */

@media(max-width:768px){

.container{

padding:30px 20px;

}

button{

font-size:17px;

}

}