body {
    font-family:'Open Sans', sans-serif;
}


/* Contenitore modulo */
#wb_contactLayoutGrid {
    max-width:800px;
    margin:60px auto;
    padding:40px;
}


#wb_contactLayoutGrid h1 {
    text-align:center;
    font-size:32px;
    margin-bottom:15px;
    color:#111;
}


#wb_contactLayoutGrid p {
    text-align:center;
    margin-bottom:30px;
    color:#555;
    line-height:1.6;
}


form {
    display:flex;
    flex-direction:column;
    gap:20px;
}


input,
textarea {
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:16px;
}


textarea {
    min-height:180px;
    resize:vertical;
}


/* Pulsante invio */
button {
    background:#111111;
    color:#ffffff;
    border:none;
    padding:15px;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}


button:hover {
    background:#b30000;
}


/* Pulsante Home fisso */
#homeButton {

    position:fixed;
    top:20px;
    right:20px;

    min-width:70px;
    height:45px;

    background:#111111;
    color:white;

    text-decoration:none;

    border-radius:6px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:bold;

    letter-spacing:1px;

    z-index:9999;

    box-shadow:0 2px 8px rgba(0,0,0,0.25);

    transition:0.3s;
}


#homeButton:hover {

    background:#b30000;

}