.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.content article {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 0
}

.content article .title {
    font-size: 30px;
    font-family: 'Langar', cursive;
}

.line{
    height: 4px;
    width: 70px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--honey-yellow) 0%,var(--hot-pink) 57%, var(--hot-pink) 100%);
}

a {
    color: var(--hot-pink-dark);
    cursor: pointer;
}

.content article .subtitle {
    font-size: 15px;
    text-align: center;
}

.external-login{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-buttons{
    display: flex;
}
.login-button{
    margin: 0 5px;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px 20px;
    cursor: pointer;
}
.content form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content form>* {
    margin: 10px 0;
}

.content form .group {
    display: flex;
    flex-direction: column;
}

.content form .group input {
    border: none;
    border-bottom: 1px solid;
    padding: 10px;
}

.content form .group input:focus {
    outline-width: 0;
}

.forgot-keep{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.content form .button {
    color: var(--light);
    background-color: var(--hot-pink);
    border-radius: 5px;
    padding: 10px 25px;
    cursor: pointer;
    width: 60%;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(90deg, var(--hot-pink) 0%, var(--hot-pink) 35%, var(--bright-navy-blue) 100%);
}

.new-account{
    display:flex;
    justify-content: center;
}
.main{
    padding-bottom: 2.5rem;
}
footer {
    margin: 0;
    background-color: var(--purple-navy);
    color: var(--light);

    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;            /* Footer height */
}

@media (min-width: 800px) {
    .content{
        margin: 120px 0 10px 0;
    }

    .content form {
        width: 350px;
    }

    footer {
        text-align: center;
        margin: 0;
        background-color: var(--purple-navy);
        color: var(--light);
    }
}
