.finalizar-page{

    padding:50px 0 100px;

}

.checkout{

    max-width:750px;

    margin:auto;

    background:#fff;

    border-radius:25px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.checkout h1{

    text-align:center;

    color:#6b3f1d;

    margin-bottom:30px;

}

.campo{

    margin-bottom:22px;

}

.campo label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.campo input,
.campo textarea,
.campo select{

    width:100%;

    padding:15px;

    border-radius:12px;

    border:1px solid #ddd;

    font-size:15px;

}

.campo input:focus,
.campo textarea:focus,
.campo select:focus{

    border-color:#d98b5f;

    outline:none;

}

.checkout button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:#8b5a2b;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.checkout button:hover{

    background:#d98b5f;

}