CSS

.button {
    text-align: center;
    background-color: var(--darkGrey);
    border-radius: 10px;
    padding: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.5s;
    cursor: pointer;
    font-size: 1.2rem!important;
    font-weight: 450!important;
    font-style: italic;
    &:hover {
        transform : scale(1.07);
    }
}
input {
    font-size: 1rem;
}