@font-face {
    font-family: 'vimecity-mte';
    src: url('../fonts/mte/mte.woff2') format('woff2'),
    url('../fonts/mte/mte.woff') format('woff');
    font-weight:300;
    font-style:normal;
}

@font-face {
    font-family: 'vimecity-bloomsbury';
    src: url('../fonts/mte/bloomsburysans.woff') format('woff');
    font-style:normal;
}

@font-face {
    font-family: 'vimecity-outbound';
    src: url('../fonts/mte/outboundregular.woff') format('woff');
    font-style:normal;
}

@font-face {
    font-family: 'vimecity-moneypenny';
    src: url('../fonts/mte/moneypennyscript.woff') format('woff');
    font-style:normal;
}

:root {
    color-scheme: dark;
    --bg: #07131d;
    --panel: #102331;
    --line: #28495c;
    --text: #edf7fb;
    --muted: #9db7c5;
    --accent: #6DA3A8;
    --danger: #ff6b72;
    --chrome: #41413c;
    --chrome-accent: #b2ddbc;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #07131d;
    color: var(--text);
}

body.vc-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--chrome-accent);
}

button,
input,
select {
    font: inherit;
}

.fleft {
    float: left;
}

.clear {
    clear: both;
}

.centerText {
    text-align: center;
}

header {
    width: 100%;
    height:80px;
    margin: 0 auto;
    background-color: var(--chrome);
    color: #fff;
    position: relative;
    z-index: 1000;
    font-weight:300 !important;
    line-height:1.5 !important;
    letter-spacing:0.1rem !important;
    font-family: 'vimecity-bloomsbury', Arial, sans-serif !important;
    text-transform: uppercase !important;
}

.headerBar {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
}

.headerBar a {
    color: #fff;
}

.headerBar a:hover {
    color: var(--chrome-accent);
    transition: color .5s ease;
}

.headerBarMenuStandard {
    height: 40px;
}

.headerBarMenuStandard a span {
    cursor: pointer;
}

.headerBarMenuStandard .logo-site img,
.headerBarMenuStandard .menuText span,
.headerBarMenuStandard .login_register span {
    position: relative;
    top: 25px;
    left: 10px;
}

.headerBar .logo-site {
    width: 150px;
}

.headerBar .logo-site img {
    position: relative;
    height: 65px;
    top: 10px;
    left: 10px;
    z-index: 100;
    background: var(--chrome);
    border-radius: 10px;
    padding: 5px;
}

.headerBar .menuText {
    width: calc(75% / 4);
    padding: 5px;
}

.headerBar .headerText {
    padding-top: 5px;
}

.headerBar .login_register_lang {
    width: 10%;
}

.headerBarMenuMobile,
#mobileMenu {
    display: none;
}

.headerBar label,
.headerBar span {
    font-size: 1rem;
}

.mobile_header_menu,
.iconBarClose,
.vc-scroll-top {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.iconBarHide {
    display: none;
}

.iconBarClose {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 2rem;
    font-weight: 400;
    z-index: 2;
}

.mobileMenuContainer {
    position: fixed;
    inset: 0;
    display: none;
    overflow-y: auto;
    background-color: #fff;
    color: #111;
    width: 100%;
    min-height: 100vh;
    z-index: 2000;
}

.vc-mobile-menu-spacer {
    height: 70px;
}

.mobile-menu-style {
    position: relative;
    width: calc(100% - 40px);
    padding: 10px;
    margin: 20px;
    cursor: pointer;
    background-color: #4b4b4b;
    color: #fff;
}

.mobile-menu-style-text {
    margin-left: 10px;
    margin-top: 2px;
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
}

/* Auth-Inhalt */
.game-auth-wrapper {
    width: 100%;
    min-height: calc(100vh - 80px);
    height: auto;
    flex: 1 0 auto;
    background-image:url("https://vimecity.de/pub/images/home/header_picture.jpg?v=3");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media screen and (max-width: 680px) {
    .game-auth-wrapper {
        min-height: calc(100vh - 50px);
        min-height: calc(100dvh - 50px);
        height: auto;
    }
}

.vc-auth-shell {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 18px 48px;
}

.vc-auth-card {
    width: min(460px, 100%);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #41413c;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.vc-auth-card-wide {
    width: min(820px, 100%);
}

.vc-auth-brand span {
    font-size:1.0rem !important;
}

.vc-auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.vc-auth-brand img {
    width: 100px;
    height: auto;
}

.vc-auth-card h1 {
    margin: 24px 0 8px;
    font-size: 1.2rem;
}

.vc-auth-intro,
.vc-auth-switch {
    color: var(--muted);
    line-height: 1.55;
}

.vc-auth-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.vc-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.vc-auth-form label {
    display: grid;
    gap: 7px;
    font-weight: 600;
}

.vc-auth-form input,
.vc-auth-form select {
    width: 100%;
    height:50px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #091923;
    color: var(--text);
    padding: 8px;
}

.vc-auth-form input:focus,
.vc-auth-form select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.vc-auth-check {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    font-weight: 400 !important;
}

.vc-auth-check input {
    width: auto;
    margin-top: -14px;
}

.vc-auth-submit {
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color:white !important;
    padding: 13px 18px;
    font-weight: 300;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.05rem;
}

.vc-auth-message {
    margin-top: 18px;
    border: 1px solid var(--line);
    padding: 12px;
    border-radius: 10px;
}

.vc-auth-message-error {
    border-color: var(--danger);
    color: #ffd9dc;
}

.vc-auth-links,
.vc-auth-switch {
    text-align: center;
    margin-top: 18px;
}

.vc-auth-card a {
    color: var(--accent);
}

.game-auth-wrapper {
    font-size:0.9rem !important;
    font-weight:300 !important;
    line-height:1.5 !important;
    letter-spacing:0.1rem !important;
    font-family: 'vimecity-bloomsbury', Arial, sans-serif !important;
    text-transform: uppercase !important;
}

footer {
    position: relative;
    background-color: var(--chrome);
    color: #fff;
    width: 100%;
    flex: 0 0 auto;
    font-weight:300 !important;
    line-height:1.5 !important;
    letter-spacing:0.1rem !important;
    font-family: 'vimecity-bloomsbury', Arial, sans-serif !important;
    text-transform: uppercase !important;
}

footer .footer-content {
    max-width: 1900px;
    margin: 0 auto;
}



footer .footer-logo {
    width: 250px;
    float: left;
    padding: 30px;
}

footer .site-logo {
    width: 100%;
    height: auto;
}

footer .footer-blocks {
    width: calc(20% - 40px);
    float: left;
    padding: 5px;
    padding-top: 50px;
}

footer .footer-blocks .blocks-title {
    font-size: 1rem;
    color: var(--chrome-accent);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 2.2;
    text-align: left;
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-position: under;
}

footer .footer-blocks .blocks-text-line {
    font-size: .9rem;
    color: #fff;
    font-weight: 300;
    line-height: 2.2;
    text-align: left;
    cursor: pointer;
}

footer .footer-blocks .blocks-text-line-no-hover {
    color: #fff;
    cursor: default;
}

footer .footer-blocks .blocks-text-line:hover {
    color: var(--chrome-accent);
    transition: color .5s ease;
}

footer .footer-blocks .blocks-text-line img {
    height: 50px;
    width: auto;
    padding: 10px;
    float: left;
}

footer .footer-end {
    text-align: center;
    padding: 20px;
}

footer .copyright {
    font-size: 1rem;
    color: #aaa;
    letter-spacing: .02rem;
}

.vc-scroll-top {
    font-size: 1.5rem;
    padding: 10px;
}

@media screen and (max-width: 1199px) {
    .headerBarMenuStandard {
        display: none !important;
    }

    .headerBarMenuMobile {
        display: block;
        height: 40px;
    }

    .headerBarMenuMobile .header-mobile-logo-site {
        margin-left: 0;
        position: relative;
        height: 25px;
        top: 12px;
        left: 10px;
        z-index: 100;
        border-radius: 10px;
    }

    .headerBar .logo-site {
        width: 40%;
    }

    .headerBar .logo-site img {
        background: var(--chrome);
        border-radius: 10px;
    }

    .headerBar .login_register_lang {
        width: 60%;
    }

    .headerBar .login_register_lang .mobile_header_menu {
        position: absolute;
        right: 15px;
        top: 9px;
        color: #fff;
        font-size: 1.5rem;
        padding: 6px;
    }

    .headerBar .login_register_lang .mobile_header_clear {
        clear: both;
    }

    .game-auth-wrapper,
    .vc-auth-shell {
        min-height: calc(100vh - 50px);
    }

    footer .site-logo {
        width: 80%;
        max-width: 300px;
        padding: 30px;
    }

    footer .footer-logo {
        width: 100%;
        float: none;
        padding: 0;
    }

    footer .footer-blocks {
        padding: 25px 40px;
        /*float: left;*/
        width: 50%;
    }

    footer .footer-blocks .blocks-title,
    footer .footer-blocks .blocks-text-line {
        text-align: left;
    }

    footer .copyright {
        text-align: center;
        padding: 15px;
    }
}

@media screen and (max-width: 680px) {
    .game-auth-wrapper {
        background-attachment: scroll;
    }

    .vc-auth-grid {
        grid-template-columns: 1fr;
    }

    .vc-auth-grid > span {
        display: none;
    }

    .vc-auth-card {
        padding: 22px;
    }

    footer .footer-blocks,
    footer .footer-blocks.fullPartMobile {
        width: 100%;
        max-width: 100%;
        float: none;
        padding: 20px 40px;
    }
}

.vc-auth-remember { display:block !important; }
.rememberLogin { height:20px !important; width:25px !important; position: relative; top:3px;}

.vc-confirmation-card{max-width:620px;text-align:center}.vc-confirmation-card .vc-auth-submit{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;margin-top:18px}.vc-confirmation-card.success{border-color:rgba(125,190,114,.65)}.vc-confirmation-card.error{border-color:rgba(210,92,92,.7)}

.smallSpace {
    margin-top:10px;
    margin-bottom:10px;
}