body {
    height: 90%;
    background: var(--off-white-background);
}

h1, h2, div, span {
    color: var(--dark-blue);
}

#user-card {
    top: 20%;
    height: 25rem;
}

.login_card {
    position: absolute;
    left: 30%;
    width: 40%;

    text-align: center;
}

#form-title {
    position: relative;
}

#google-sign-in-button {
    position: relative;
    left: 10%;

    width: 80%;

    margin-top: 2rem;
}

#or {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

#or-text {
    background: var(--off-white-background);
    padding: 0 10px;
}

input {
    position: relative;
    margin-top: 1rem;

    height: 3rem;
    width: 80%;

    text-align: center;
    font-size: 1rem;

    border: solid 1px var(--dark-blue-half-opacity);
    border-radius: 15px;
}

#login_btn {
    height: 3rem;
    width: 80%;

    background: var(--light-blue) !important;
    color: var(--dark-blue) !important;

    font-weight: 800;

    box-shadow: 0.15rem 0.15rem 0.15rem var(--shadow);
}

#login_btn:hover {
    background: var(--orange) !important;
}

.forgot-password {
    color: var(--dark-blue);
}

.forgot-password:hover {
    color: var(--orange);
}

#sent_email_confirmation {
    top: 20rem;
    height: 13rem;
}

.to-home-btn {
    margin-left: 1rem;
}

#wrong-reset-token {
    top: 20rem;
    height: 20rem;
}

.alert-danger {
    position: relative;
    left: 10%;

    width: 80%;

    margin-top: 1rem;
    border-radius: 15px;

    color: var(--off-white-background);
}

@media screen and (max-width: 1300px) {

    .login_card {
        left: 20%;
        width: 60%;
    }

}

@media screen and (max-width: 900px) {

    .login_card {
        left: 5%;
        width: 90%;
    }

    #section-2 {
        top: 20%;
        padding-bottom: 2rem; /* To make the window scroll */
    }

    input {
        width: 90%;
    }

}