main {
    display: flex;
    font-weight: 400;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

form {
    position: relative;
    width: 400px;
    margin: 0 auto;
}

button {
    font-size: 120%;
    width: 120px;
    height: 42px;
    border: none;
    background: #7BA7AB;
    border-radius: 8px 8px 8px 8px;
    cursor: pointer;
}

.field{
    background: #fbfbfb;
    font-size: 24px;
    line-height: 1;
    width: 100%;
    padding: 3px;
    margin: 0 6px 5px 0;
    outline: none;
    border: 1px solid #d9d9d9;
}

main label{
    color: #777;
    font-size: 26px;
}

main h2{
    font-weight: 900;
    font-size: 180%;
}

