#root {
    min-height: 650px;
}

.background-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 50%;
}
.form-container-body {
    flex: 1;
    align-items: center;
    display: flex;
}

.form-container-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 321px;
    height: 480px;
    background-color: white;
    flex: 1;
}

.form-container-content img {
    width: 80%;
}
.content-description {
    font-family: OpenSans-Regular;
    font-size: 20px;
    color: #546774;
    text-align: center;
    line-height: 28px;
    margin-top: 48px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 32px;
}

.input-label {
    display: block;
    margin-bottom: 6px;
    font-family: OpenSans-Regular;
    font-size: 12px;
    color: #4b5151;
    line-height: 20px;
}

.input-label-error {
    color: var(--u4-error);
}

.input-text {
    display: block;
    width: 283px;
    height: 36px;
    font-family: OpenSans-Regular;
    font-size: 14px;
    background: white;
    border: 1px solid #aab1b6;
    border-radius: 2px;
    line-height: 20px;
    padding-left: 8px;
}

.input-text::placeholder {
    font-family: OpenSans-Regular;
    font-size: 14px;
    color: #d2d6d9;
    line-height: 20px;
}

.input-text-error {
    border: 1px solid var(--u4-error);
}

.input-error {
    display: table;
}

.input-error-img {
    display: table-cell;
    width: 16px;
}

.input-error-img > img {
    color: var(--u4-error);
    width: 12px;
}

.input-error-text {
    display: table-cell;
    width: 267px;
    font-family: OpenSans-Regular;
    font-size: 12px;
    color: var(--u4-error);
    line-height: 20px;
}

.login-button {
    width: 100%;
    height: 44px;
    background: #0d78aa;
    border-radius: 4px;
    font-family: OpenSans-SemiBold;
    font-size: 14px;
    color: white;
    text-align: center;
    line-height: 24px;
    border: none;
}

.login-button:hover {
    background: var(--u4-button);
    color: white;
}

.login-button:active {
    background: #084866;
    box-shadow: 0 0 4px 2px rgba(13, 120, 170, 0.5);
    border-radius: 4px;
}

.branding-container {
    overflow: hidden;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--u4-green);
}

.branding-header {
    width: 100%;
    font-family: OpenSans-Regular;
    font-size: 20px;
    color: black;
    text-align: center;
    font-weight: 900;
    text-shadow: 1px 0 black;
    letter-spacing: 1px;
    font-weight: bold;
    margin-top: -75px;
}

.branding-header p {
    margin-bottom: 0;
}

.branding-header p:last-of-type {
    margin-bottom: 75px;
}

.branding-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image: url(../images/4u.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: visible;
}

.branding-body > img {
    margin-top: -55px;
    width: 75%;
    height: auto;
}

.branding-footer {
    width: 100%;
    font-family: OpenSans-Regular;
    font-size: 12px;
    padding-bottom: 20px;
    color: black;
    text-align: center;
}

.branding-footer a {
    text-decoration: none;
    color: #0d78aa;
    font-weight: 600;
}

.branding-footer a:hover {
    color: #00648e;
}

@media (max-width: 1262px) and (min-width: 962px) {
}

@media (max-width: 961px) and (min-width: 642px) {
    .form-container {
        width: 100%;
        background-color: var(--u4-green);
    }

    .branding-container {
        display: none;
    }

    .content-description {
        font-size: 14px;
    }
}

@media (max-width: 641px) and (min-width: 0px) {
    #root {
        min-height: 550px;
    }
    .form-container-content {
        max-width: 100vw;
    }

    .form-container-content > img {
        max-width: 80vw;
    }
    .form-container {
        width: 100vw;
        border-top: 4px solid var(--u4-green);
    }

    .branding-container {
        display: none;
    }
    .content-description {
        width: 80vw;
        font-size: 14px;
    }
    .form-group *,
    .login-button {
        max-width: 80vw;
    }
}

@media (max-width: 320px) {
}
