
/* Background image */

.bg-img-url {
    z-index: 5;
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    padding: 0.4rem;
    border-top-right-radius: 0.5rem;
    font-size: 1.5vw;
}

.bg-img {
    position: fixed;
    top: 0;
    left: 0;
}

.bg-img-large {
    display: none;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 3;
}

.bg-img-normal {
    display: none;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}

.bg-img-small {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

@media only screen and (min-width: 880px) {
    .bg-img-normal {
        display: block;
    }
}

@media only screen and (min-width: 1280px) {
    .bg-img-large {
        display: block;
    }
    .bg-img-normal {
        display: block;
    }
}


/* Login container */

.auth-box-icon-container {
    height: 8rem;
    margin-bottom: 1.5rem;
}

.auth-box-icon {
    height: 8rem;
    max-width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 1rem;
}

.auth-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 4;
    opacity: 0.3;
}

.auth-box {
    opacity: 1;
    z-index: 5;
    position: absolute;
    top: calc(50% - calc(26rem / 2) - 1rem);
    right: 8rem;
    width: 20rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.text-field {
    height: 2rem;
    width: calc(100% - 1rem - 2px);
    border-radius: 0.25rem;
    outline: 0;
    outline-color: transparent;
    padding: 0 0.5rem 0 0.5rem;
    margin: 1px 0 0 0;
}

.signup-btn, .auth-btn {
    height: 2rem;
    width: 100%;
    border: 0;
    border-radius: 0.25rem;
    cursor: pointer;
}

.forgot-pwd {
    display: flex;
    text-align: left;
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: .85rem;
    text-decoration: none;
}

.forgot-pwd:hover {
    text-decoration: underline;
}

.policies-txt {
    width: 100%;
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: .8rem;
}

.auth-box-url {
    text-decoration: none;
}

.auth-box-url:hover {
    text-decoration: underline;
}


/* Login errors */

.auth-err {
    text-align: center;
    position: fixed;
    top: 1rem;
    left: calc(50% - 15rem);
    border-radius: 1rem;
    width: 30rem;
    z-index: 3;
}

.auth-err-txt {
    font-size: 1.25rem;
}





















/* TESTING */