html, body {
    min-height: 100%;
}

body.none-landing {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
    color: #fff;
    background: #1c1c1c;
}

.none-landing * {
    box-sizing: border-box;
}

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 56px;
    background: rgba(0, 0, 0, .36);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.landing-nav-inner {
    width: min(1170px, calc(100% - 30px));
    height: 56px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-left {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.landing-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    flex-shrink: 0;
}

.landing-brand img {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.landing-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-links a {
    color: #fff;
    text-decoration: none;
    padding: 17px 12px 14px;
    font-size: 17px;
    border-bottom: 3px solid transparent;
}

.landing-links a:hover {
    border-bottom-color: #fff;
}

.top-login {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-login input {
    width: 145px;
    height: 31px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 3px;
    background: rgba(255, 255, 255, .94);
    color: #222;
    outline: none;
    font-size: 14px;
}

.top-login button {
    height: 31px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: transparent;
    color: #fff;
    border-radius: 3px;
    padding: 0 14px;
    font-weight: 600;
    cursor: pointer;
}

.top-login button:hover {
    background: rgba(255, 255, 255, .13);
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(24, 10, 45, .14),
            rgba(24, 10, 45, .30)
        ),
        url('/img/image.png') center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding: 95px 0 45px;
}

.hero-inner {
    width: min(1170px, calc(100% - 30px));
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 70px;
    align-items: center;
}

.hero-copy {
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
}

.hero-logo {
    width: min(460px, 85%);
    max-height: 180px;
    object-fit: contain;
}

.hero-copy h1 {
    margin: 12px 0 0;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: .2px;
}

.signup-panel,
.auth-panel {
    background: rgba(245, 245, 245, .75);
    color: #333;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .30);
    padding: 25px 30px 28px;
}

.signup-panel h2,
.auth-panel h2 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
}

.auth-field {
    margin-bottom: 12px;
}

.auth-field input {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #b8b8b8;
    border-radius: 3px;
    background: #fff;
    color: #222;
    font-size: 16px;
    outline: none;
    transition: .15s;
}

.auth-field input:focus {
    border-color: #7B2CBF;
    box-shadow: 0 0 0 1px #7B2CBF;
}

.signup-button {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 3px;
    background: #02b757;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: inset 0 -2px rgba(0, 0, 0, .13);
}

.signup-button:hover {
    background: #00a94f;
}

.auth-note {
    margin: 14px 0 0;
    text-align: center;
    color: #666;
    font-size: 13px;
}

.auth-note a {
    color: #6A1B9A;
    text-decoration: none;
}

.form-error {
    display: none;
    margin: 0 0 12px;
    padding: 8px 10px;
    background: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    border-radius: 3px;
    font-size: 14px;
}

.secondary-section {
    background: #fff;
    color: #333;
    padding: 70px 20px;
    text-align: center;
}

.secondary-section h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 15px;
}

.secondary-section p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
    line-height: 1.55;
}

.auth-only {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 15px 40px;
    background:
        linear-gradient(
            rgba(24, 10, 45, .18),
            rgba(24, 10, 45, .35)
        ),
        url('/img/image.png') center / cover no-repeat fixed;
}

.auth-panel {
    width: min(430px, 100%);
}

.auth-panel .brand-center {
    text-align: center;
    margin-bottom: 18px;
}

.auth-panel .brand-center img {
    width: 180px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0);
}

.auth-top-link {
    position: fixed;
    top: 18px;
    left: 20px;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-shadow: 0 1px 3px #000;
}

@media (max-width: 900px) {
    .landing-nav {
        height: auto;
        min-height: 56px;
        position: absolute;
    }

    .landing-nav-inner {
        height: auto;
        min-height: 56px;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .landing-links {
        display: none;
    }

    .top-login {
        width: 100%;
        order: 2;
    }

    .top-login input {
        flex: 1;
        width: auto;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-copy h1 {
        font-size: 30px;
    }

    .signup-panel {
        width: min(470px, 100%);
        margin: auto;
    }
}

@media (max-width: 560px) {
    .top-login {
        display: none;
    }

    .hero {
        padding-top: 80px;
    }

    .landing-nav-inner {
        justify-content: center;
    }

    .landing-left {
        justify-content: center;
    }

    .signup-panel,
    .auth-panel {
        padding: 22px 18px 24px;
    }

    .hero-copy h1 {
        font-size: 25px;
    }
}



