/************************** FORM **************************/

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='number']
{
    width: 100%;
    border: 1px solid lightgrey;
    height: 35px;
    border-radius: 5px;
    padding: 0px 10px;
    box-sizing: border-box;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

.form {
    display: grid;
    row-gap: 20px;
}

.form .block label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form .block .input-hidden {
    border: 1px solid white;
    height: 0px;
    position: absolute;
}

.form .block .note {
    text-align: left;
    color: grey;
    font-size: 15px;
    margin-top: 10px;
}

.form .button {
    margin-top: 50px;
    display: grid;
    row-gap: 10px;
}

.form .button button {
    width: 100%;
}