/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* FUNDO */
body{
    background: #757070;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARD PRINCIPAL */
.botoes{
    background: #fff;
    width: 280px;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* COLUNA */
.coluna{
    display: flex;
    flex-direction: column;
}

/* TITULO */
.coluna h3{
    font-size: 18px;
    color: #000;
    margin-bottom: 18px;
    text-align: center;
}

/* FORMULÁRIOS */
.coluna form{
    margin-bottom: 12px;
}

/* BOTÕES */
.coluna button{
    width: 100%;
    padding: 8px;

    border: none;
    border-radius: 10px;

    background: #11c5ad;
    color: white;

    font-size: 14px;
    cursor: pointer;

    transition: 0.3s;
}

/* HOVER */
.coluna button:hover{
    background: #0fa892;
    transform: scale(1.02);
}

/* CLIQUE */
.coluna button:active{
    transform: scale(0.98);
}