﻿/* Portal Select Form */

.body-container hr {
    margin-left: -3em;
    margin-right: -3em;
    border-color: #dedede;
}

.portal-select-label {
    text-align: left;
    display: grid;
    grid-template-columns: 90px 66% 20px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background-color: white;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .portal-select-label .portal-logo {
        height: 90px;
        width: 90px;
        border-radius: 0.3rem;
        overflow: hidden;
        display: flex;
    }

        .portal-select-label .portal-logo img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

.social-buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.social-buttons-wrapper .button {   
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: 1px solid #A8ADAF;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.15);
}

.social-button .image {
    height: 100%;
}
.social-button {
    width: 100%;
    max-width: 64px;
    height: 30px;
}


.navigation-container button {
    border: none;
    color: #677074;
    background: none;
    font-size: 16px;
}

.button {
    height: 40px;
    border: none;
    padding: 8px;
}

.continue-button {
    width: 100%;
    background: rgba(0, 30, 255, 1) !important;
    color: #fff !important;
    cursor: pointer;
    border-radius: 5px;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.disabled {
    cursor: default;
    opacity: .45;
    background-image: none;
    pointer-events: none;
    box-shadow: none;
}

.return-back {
    width: 100%;
    color: #001EFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 32px;
}

    .return-back a {
        margin-left: 8px;
    }

.password-continue-wrapper {
    margin-top: 32px;
}

.email-continue-wrapper {
    margin-top: 16px;
}

.button.login {
    width: 100%;
    background: rgba(0, 30, 255, 1);
    color: #fff;
}


.loader,
.loader div {
    box-sizing: border-box;
}

.loader {
    display: none;
    position: relative;
    width: 24px;
    height: 24px;
}

    .loader div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 24px;
        height: 24px;
        border: 4px solid grey;
        border-radius: 50%;
        animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: transparent #fff #fff #fff;
    }

        .loader div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .loader div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .loader div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-active {
    display: inline-block;
}

.return-to-login{
    height: auto;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}