*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html , body{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
}

.wrapper{
    max-width: 400px;
    background-color: #000;
    color: #eee;
    border-radius: 10px;
    padding: 20px;
}

h1{
    margin-bottom: 10px;
}

.input-wrapper{
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-wrapper label{
    width: 90px;
    font-size: 18px;
}

.input-wrapper input{
    background-color: #111;
    color: #eee;
    padding: 0 10px;
    width: calc(100% - 90px);
    height: 100%;
    border-radius: 5px;
    font-size: 18px;
}

.input-wrapper:last-child{
    margin: 0;
}
