body{
    background-color: #030a15;
    display: flex;
    align-content: center;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    align-items: center;
}
.form {
    width: 25rem;
    /* height: 43rem; */
    height: 130vh;
    --background: #d3d3d3;
    --input-focus: #2d8cf0;
    --font-color: #323232;
    --font-color-sub: #666;
    --bg-color: #fff;
    --main-color: #323232;
    padding: 20px;
    margin: 2rem 0px;
    background: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
}

.form>p {
    font-family: var(--font-DelaGothicOne);
    color: var(--font-color);
    font-weight: 700;
    font-size: 2.5em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.form>p>span {
    font-family: var(--font-SpaceMono);
    color: var(--font-color-sub);
    font-weight: 600;
    font-size: 0.45em;
    align-self: center;
}

.separator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.separator>div {
    width: 100px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--font-color-sub);
}

.separator>span {
    color: var(--font-color);
    font-family: var(--font-SpaceMono);
    font-weight: 600;
}

.oauthButton {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /* margin: 50px auto 0 auto; */
    padding: auto 15px 15px auto;
    width: 20em;
    height: 3em;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5em;
    color: var(--font-color);
    cursor: pointer;
    transition: all 350ms;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.oauthButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #212121;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 350ms;
}

.oauthButton:hover {
    color: #e8e8e8;
}

.oauthButton:hover::before {
    width: 100%;
}

.form>input {
    width: 22em;
    height: 3em;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--font-color);
    padding: 6px 14px;
    outline: none;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}








/* Subject Specific ID  */
#gitHub .icon:hover{
    color: #e8e8e8;
}



 #gitHub:hover svg {
    fill: white; 
}

#logIn{
    font-size: 1rem;
    margin-top: 2rem;
}

#logIn>a{
    align-self: center;
}

#signupError{
    margin: 0px;
    padding: 0px;
    font-size: 0.7em;
}