@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-white-color: #fff;
    --main-grey-color: #222222;
}

html {
    font: 16px/1.5 "Montserrat", sans-serif;
    background-color: var(--main-grey-color);
    color:var(--main-white-color);
}

.form {
    width: 180px;
    margin: auto;
    margin-top: 200px;
}

input {
    width:180px;
    margin-bottom: 2px;
}


