h1 {
    color: #e2e2e2;
    margin-top: 50px;
    width: 350px;
    font-size: 3em;
    text-align: center;
    text-shadow: 0px 3px 20px #0d0d0d;
}

#wrapper {
    background: rgb(52, 56, 61);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: calc(100vh - 159px);
}

/* === Sign in Form === */
#restore {
    height: 90px;
    width: 450px;
    border-radius: 8px;
    position: relative;
    margin-top: 70px;
}

#restore input:first-of-type {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

#restore input:last-of-type {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

#restore input[type="text"],
#restore input[type="password"],
#restore button[type="submit"] {
    background: rgb(28, 30, 33);
    box-shadow: inset -100px -100px 0 rgb(28, 30, 33);
    /*Prevent yellow autofill color*/
    color: rgb(52, 56, 61);
}

#restore input[type="text"],
#restore input[type="password"] {
    position: relative;
    display: block;
    width: 450px;
    height: 80px;
    border: 0;
    outline: 0;
    top: -2px;
    padding: 0 0 0 20px;
    font-weight: 700;
}

#restore input[type="text"]:focus,
#restore input[type="password"]:focus {
    color: rgb(255, 255, 255);
}

#restore button[type="submit"] {
    display: block;
    position: absolute;
    width: 65px;
    height: 65px;
    color: rgb(52, 56, 61);
    border-radius: 50px;
    outline: 0;
    z-index: 2;
    top: 6px;
    right: -54px;
    border: 6px solid rgb(52, 56, 61);
    font-size: 35px;
    text-indent: 0px;
    padding-left: 9px;
    padding-bottom: 3px;
    text-align: center;
}

#restore button[type="submit"]:hover {
    color: #F47920;
    text-shadow: 0 0 10px #F47920;
    cursor: pointer;
}

#restore p {
    color: rgb(79, 85, 97);
    padding: 0 20px;
    font-weight: 700;
    font-size: 12px;
    margin: 5px 0 0 0;
}

#restore p>a {
    color: rgb(111, 119, 135);
    text-decoration: none;
}

#restore p>a:hover {
    border-bottom: 1px solid;
}