body {
    background-image: url("/img/login-dots.svg");
    background-attachment: fixed;
    background-position: center;
    background-color: var(--gc-bg-64);
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    width: 30em;
    margin: 8em auto 0em auto;
    background-color: #7A7A7B;
    gap: 2.5em;
}

.login-header {
    text-align: center;
    color: var(--gc-orange);
    margin: 2em 0em 2em 0em;
    font-size: 30pt;
    font-weight: 900;
    line-height: 1.4;
}

.login-white {
    color: white;
    margin-bottom: 0.2em;
}

.login-input-wrapper {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-bottom: 2.5em;
}

.login-input {
    font-size: 12pt;
    width: 100%;
    color: white;
    box-sizing: border-box;
    background-color: #7A7A7B;
    outline: none;
    border: none;
    padding: 0.4em;
    border-bottom: 2px solid var(--gc-orange);
    caret-color: var(--gc-orange);
}

.login-input::placeholder {
    color: white;
    outline: none;
}

.login-input:focus::placeholder {
    color: transparent;
}

.login-input:-webkit-autofill {
    -webkit-text-fill-color: white;
}

.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #7A7A7B inset;
}

.login-logo {
    align-self: center;
    margin: 2em auto;
}

.login-logo-img {
    height: 50px;
}

.login-btn-wrapper {
    align-self: center;
    margin-bottom: 5em;
}

.login-submit {
    background-color: var(--gc-orange);
    border: solid 1px var(--gc-orange);
    text-align: center;
    padding: 0.7em;
    color: white;
    cursor: pointer;
    font-size: 18pt;
    width: 75%;
    align-self: center;
    font-weight: 500;
}

.login-submit:hover {
    background-color: white;
    border: solid 1px var(--gc-orange);
    text-align: center;
    color: var(--gc-orange);
}

.login-pw-forgotten {
    text-align: center;
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-size: 13pt;
    margin-bottom: 3em;
}

.login-pw-forgotten:hover {
    color: var(--gc-orange);
}