*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 2rem;
    font-family: sans-serif;
    width: 100%;
    height: 100vh;
}

.Nav {
    display: flex;
    width: 100%;
    height: 12%;
    justify-content: center;
    align-items: center;
    background: #f3f3f3;
}

.Nav__img {
    width: 18%;
    height: 100%;
}

.main {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.main__article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f6f6f6;
}

.main__h1{
    text-align: center;
}

.main__text{
    display: flex;
    align-items: center;
}

.Form{
    padding-top: 1rem;
}

.form__field{
    font-size: 100%;
    width: 70%;
}

.from__button{
    font-size: 100%;
    width: 28%;
}

.errorbutton{
    font-size: 100%;
    width: 100%;
    margin-top: 1rem;
}

.fa-check{
    color: green;
    font-size: 300%;
}

.fa-x{
    color: red;
    font-size: 300%;
}