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

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    place-items: center;
    min-height: 100vh;
    overflow: hidden;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    width: 100%;
}

input,
button {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 3px;
}

input {
    border: 2px solid #DADDEC;
    margin: 5px 0 10px;
    font-size: 1rem;
    color: #656880;
}

input[type=submit] {
    display: block;
    font-size: 1rem;
    cursor: pointer;
}

a {
    display: block;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid #DADDEC;
    color: #656880;
    font-style: normal;
    padding: 14px;
    border-radius: 3px;
    text-decoration: none;
    width: 30%;
    text-align: center;
}

input::file-selector-button{
    border: 1px solid #DADDEC;
    padding: 7px;
    border-radius: 3px;
    color: #656880;
}