.background-text {
    position: absolute;
    margin: auto;
    width: 100%;
    top: 30px;
    cursor: pointer;
    color: #222;
    font-size: 13.5vw;
    line-height: 14.5vw;
    text-align: center;
    pointer-events: none;
    z-index: -1;
}

.login-inner {
    width: 100%;
    min-width: 95vw;
    text-align: center;
}

.inner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    max-width: 350px;
    margin: 8vh auto;
    align-content: center;
    padding: 20px;
    padding-top: 0;
    border-radius: 15px;
    background-color: rgb(50, 50, 50, .3);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    text-align: center;
}

.main-container p {
    text-align: center;
}

.left-align p {
    text-align: left;
}

input {
    background-color: transparent;
    width: 100%;
    min-width: fit-content;
    height: 2em;
    border: none;
    border-bottom: 1px solid #ff0;
    color: white;
    font-size: .9em;
    line-height: 1.5em;
    vertical-align: middle;
}

.password-input {
    position: relative;
    display: flex;
}

.toggle-password-visibility {
    display: inline-block;
    position: absolute;
    right: 10px;
    bottom: .2em;
    padding: 0 1em;
    height: 1.5em;
    line-height: 1.5em;
    cursor: pointer;
    color: #888;
}

.toggle-password-visibility:hover {
    color: #ff0;
    background-color: #222;
    border-radius: 15px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.remember input {
    width: 30px;
}

.login-button {
    margin-bottom: 1em;
    width: 100%;
    height: 2em;
    border: none;
    border-radius: 1em;
    background-color: #888;
    color: #222;
    font-size: 1em;
    cursor: pointer;
}

.login-button:hover {
    background-color: #ff0;
    color: #222;
}

.instructions-text {
    margin: 1em 0;
    text-align: left;
    font-size: .85em;
    line-height: 1.4em;
    opacity: .7;
}

.success-message {
    color: green;
}

.or-text {
    margin: 1em 0;
    font-size: .85em;
    opacity: .7;
}

.google-login-button {
    width: 50%;
    height: 50%;
    margin: 0 auto;
}

.footer-text {
    width: fit-content;
}

/* Desktop */
@media screen and (min-width: 600px) {
    .background-text {
        font-size: 8.5vw;
        line-height: 6.7vw;
    }

    .login-inner {
        width: 400px;
        min-width: 35vw;
        max-width: 100vw;
    }
}
