main {
    position: relative;
    max-width: 450px;
    margin: 2rem auto;
    padding-bottom: 4rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

main form {
    margin-top: 2rem;
}

main form label {
    display: block;
    margin: 1.25rem auto 0.35rem;
    color: white;
}

main form input {
    width: 100%;
    padding: 0.5rem;
    border: none;
    transition: box-shadow .1s;
} main form input:focus {
    box-shadow: 0 0 5px black;
}

main > a {
    margin-top: 2rem;
    display: block;
    text-align: center;
}

h1 span {
    display: block;
    font-weight: normal;
}

.login-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.login-buttons span {
    cursor: pointer;
    color: #b2bae9;
}

.or {
    display: grid;
    grid-gap: 1rem;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    margin: 1.5rem auto;
}

.or > div {
    display: block;
    width: 160px;
    height: 1px;
    background-color: #ffffff1f;
}

.social-logins {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.social-logins > img {
    cursor: pointer;
    transition: box-shadow .1s
} .social-logins > img:hover {
    box-shadow: 0 0 5px black;
}