.banner {
    position: fixed;
    top: 0;
    left: 5%;
    width: calc(90% - var(--item-pdd) * 2);
    padding: var(--item-pdd);
    border-radius: 0px 0px var(--item-rad) var(--item-rad);
    background-color: var(--danger-clr);
    text-align: center;
}

.login-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login {
    text-align: center;
    width: 300px;
}
.login .title {
    margin-bottom: var(--item-pdd);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login .title h1 {
    font-weight: normal;
    display: inline-block;
}
.login .title img {
    height: 75px;
    width: 75px;
    margin-bottom: 0px;
}
.login img {
    width: calc(var(--item-pdd) * 5);
    margin-bottom: var(--item-pdd);
}
.login input,
.login .checkmark-container {
    margin-bottom: var(--item-pdd);
    width: calc(100% - var(--item-pdd));
}
.login input[type=text],
.login input[type=password] {
    display: block;
}
.login label {
    color: var(--secondary-font-clr)
}
.login button {
    width: 100%;
    font-size: 20px;
    margin-bottom: var(--item-pdd);
}
.login .h-captcha {
    margin-bottom: var(--item-pdd);
}

#captcha {
    transition: all calc(var(--simple-transition-duration) * 1.5) ease;
}
#signup-form {
    display: none;
    transition: all calc(var(--simple-transition-duration) * 1.5) ease;
}