@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

body {
    font-family: "Roboto", sans-serif !important;
    font-size: 16px !important;
}

input::placeholder {
    color: gray;
}

.websave__form {
    border: lightblue 1px solid;
    padding: 20px;
}

.button {
    background-color: #13aa52;
    border: 1px solid #13aa52;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 7px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0 3px 9px 0;
}

form label {
    color: black;
    font-weight: 500;
}

#resultMessage {
    margin: 0;
}