body {
    background-color: white;
    font-family: -apple-system, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.form-container {
    font-size: 23px;
    font-weight: 300;
    width: 300px;
    height: 190px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -95px;
}

.credentials {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 3px;
}

input[type="text"], input[type="password"] {
    positon: relative;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 21px;
    font-weight: 300;
    color: gray;
    background: transparent;
    border: none;
    outline: none;
}

input[type="submit"] {
    width: 100%;
    height: 40px;
    font-size: 20px;
    font-weight: 300;
    margin-top: 22px;
    color: gray;
    background-color: transparent;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}
