﻿.pds-bg-white {
    background: var(--PDS-White);
}

/*Shorthand Flex Styles*/

.flex-row-justify-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

.flex-row-justify-start {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 8px;
}

.flex-column-justify-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-wrap-start {
    flex-wrap: wrap;
    align-content: flex-start;
}

.body-size {
    font-size: 14px;
    line-height: 24px;
}

.side-nav-logo {
    display: none;
}

.general-margin-top-lg {
    margin-top: 3rem;
}

.form-block-side {
    border-left: none;
    border-bottom: 6px solid #1bcba5;
    padding: 1.5rem 1.5rem 1.5rem 2.25rem;
}

@media(min-height: 998px) {
    .body-size {
        font-size: 16px;
        line-height: 26px;
    }
}

@media(min-width: 992px) {
    .side-nav-logo {
        display: block;
        width: 100%;
        padding-right: 2.25rem;
    }

    .form-block-side {
        border-left: 6px solid #1bcba5;
        border-bottom: none;
        margin-right: 2.25rem;
    }
}
