@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css');

* {
    font-family: 'Open Sans', 'sans-serif', 'FontAwesome';
}


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);
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: calc(100vh - 159px);
}

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

#signin::before {
    display: block;
    position: relative;
    height: 2px;
    background: rgb(52, 56, 61);
    content: '';
    top: 78px;
    margin-left: 20px;
    z-index: 1;
}

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

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

#signin input[type="text"],
#signin input[type="password"],
#signin 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);
}

#signin input[type="text"],
#signin 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;
}

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

#signin 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: 44px;
    right: -54px;
    border: 6px solid rgb(52, 56, 61);
    font-size: 35px;
    text-indent: 0px;
    padding-left: 9px;
    padding-bottom: 3px;
    text-align: center;
}

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

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

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

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