﻿.split-view {
    width: 100%;
    display: flex;
    height: 100vh;
}

.sv-part {
    width: 50%;
    height: 100vh;
    display: flex;
}

.sv-part--primary {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 30%);
}

.sv-part--secondary {
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

    .sv-part--secondary img {
        max-width: 100%;
        max-height: 100vh;
    }

.sv-nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 1rem;
}

.sv-form {
    width: 400px;
}

.logo-container svg {
    height: 3em;
}

    .logo-container svg path {
        fill: var(--clr-neu-900);
    }

.sv-form-part {
    margin-bottom: 1em;
}

.sv-form .OneOfTwo {
    padding-right: 0.5em;
}

.sv-form .TwoOfTwo {
    padding-left: 0.5em;
}

.sv-form label {
    display: inline-block;
    font-size: 0.8em;
    padding-left: 0.5em;
}

@media screen and (max-width: 1040px) {
    .sv-part {
        width: 100%;
    }

    .sv-part--secondary {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .sv-part--primary {
        justify-content: normal;
    }

    .sv-nav {
        bottom: 0;
        top: unset;
    }

    .sv-form {
        width: 100%;
        padding: 1em;
    }
}

.sv-form h1 {
    font-size: 2em;
    color: var(--clr-neu-900);
}
