body {
    background-color: #000000;
    color: var(--primary-color);
}
.login-page, .error-page, .logged-out-page {
    border: 2px solid var(--primary-lighter-color);
    border-radius: 5px;
    padding: 15px;
    max-width: 400px;
    text-align: center;
    margin: auto;
}

.login-page h1, .error-page h1 {
    font-weight: 500;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-align: center;
    margin-top: 0;
}

.login-page .external-providers ul {
    list-style-type: none;
    width: 80%;
}

    .login-page .external-providers li {
        border-top: 1px solid var(--accent-color);
}

    .login-page .external-providers a {
        padding-top: 10px;
        padding-bottom: 10px;
        display: block;
        width: 100%;
    }

.login-page .external-providers a .discord {
    width: 65%;
    margin-top: 5px;
}

.user-input-wrp {
    position: relative;
    width: 80%;
    height: 50px;
    background-color: #050505;
    margin-bottom: 5px;
    margin-left: 10%;
}

.user-input-wrp .inputText {
    width: calc(100% - 10px);
    outline: none;
    border: none;
    border-bottom: 1px solid #777;
    box-shadow: none !important;
    height: 30px;
    background-color: #050505;
    color: var(--primary-color);
    margin-top: 20px;
    padding: 0px;
    padding-left: 10px;
}

.user-input-wrp .inputText:focus {
    border-color: var(--accent-color);
    border-width: medium medium 2px;
}

.user-input-wrp .floating-label {
    position: absolute;
    pointer-events: none;
    top: 15px;
    left: 7px;
    transition: 0.2s ease all;
    color: var(--accent-color);
}

.user-input-wrp input:focus ~ .floating-label,
.user-input-wrp input:not(:focus):valid ~ .floating-label {
    top: 0px;
    left: 10px;
    font-size: 13px;
    opacity: 1;
}

.mat-button2 {
    transform: translate3d(0, 0, 0);
    transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    margin: 0;
    min-width: 64px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
}

.error-details {
    text-align: left;
}

.signout {
    width: 0;
    height: 0;
    margin: 0;
    border: 0;
    padding: 0;
}