.auth-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #c2e2fe, #c2e2fe, #EBF6FF);
}
.auth-wrapper.selection-wrapper {
    background: var(--c-light);
}

.auth-panel {
    box-shadow: 3px 0px 5px 0px rgba(0 0 0 / 3%);
    border-radius: 2em;
    width: calc(100% - 3em);
    max-width: 850px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF url("/static/img/auth-overlay.png") left center / 45% 100% no-repeat;
    display: grid;
    grid-template-columns: 45% 55%;
    padding: 3em;
}
.logo-col {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3em;
}
.form-col {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em;
}
.form-col > .form-wrapper {
    flex: 1;
    width: 100%;
    display: block;
    text-align: center;
}
.acm-logo {
    width: 70%;
    max-width: 150px;
}


.portal-selection-panel {
    width: calc(100% - 3em);
    max-width: 850px;
    position: relative;
}

.portal-selection-list-cont {
    display: grid;
    grid-template-columns: repeat(3, calc(33% - 0.5em));
    gap: 1em;
}

.portal-selection-item {
    display: block;
    padding: 0.8em 1em;
    border: none;
    border-radius: 0.8em;
    box-shadow: 3px 0px 5px 0px rgba(0 0 0 / 3%);
    transition: all 100ms ease-in-out;
    background: var(--c-white);
    text-align: left;
}
.portal-selection-item:hover {
    transform: scale(103%);
}
.portal-selection-item > span {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Extra Small*/
@media only screen and (min-width : 0px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center / cover no-repeat;
        display: block;
        color: var(--c-light-gray);
    }
    .auth-panel .form-col,
    .auth-panel .logo-col {
        padding: 1em;
    }


    .portal-selection-list-cont {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 0.5em));
    }
}

/* Semi Extra Small */
@media only screen and (min-width : 486px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center /cover no-repeat;
    }
}

/* Small */
@media only screen and (min-width : 576px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center / cover no-repeat;
    }
}


/* Semi Small */
@media only screen and (min-width : 576px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center / cover no-repeat;
        padding: 3em 5em;
    }
}

/* Medium */
@media only screen and (min-width : 768px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center / 45% 101% no-repeat;
        grid-template-columns: 45% 55%;
        color: var(--c-dark-gray);
        padding: 3em;
        display: grid;
    }
    .auth-panel .form-col,
    .auth-panel .logo-col {
        padding: 2em;
    }
    .portal-selection-list-cont {
        display: grid;
        grid-template-columns: repeat(3, calc(33% - 0.5em));
    }
}

/* Medium */
@media only screen and (min-width : 868px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center / 43% 101% no-repeat;
    }
}

/* Large */
@media only screen and (min-width : 992px) {
    .auth-panel {
        background: #FFFFFF url("/static/img/auth-overlay.png") left center / 40% 101% no-repeat;
        grid-template-columns: 40% 60%;
    }
    .auth-panel .form-col,
    .auth-panel .logo-col {
        padding: 1em;
    }
}

/* Extra Large */
@media only screen and (min-width : 1200px) {
}

/* Double Extra Large */
@media only screen and (min-width : 1400px) {
}