.portal-body {
    background-image: url('/Images/Authentication/portal-login-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .portal-body::before {
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        content: '';
        left: 0;
        top: 0;
    }

header {
    display: block;
    position: absolute;
    left: 40px;
    top: 40px;
    z-index: 1;
}

    header svg {
        display: block;
    }

/* main */
main {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.main--portal__container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0px 0px 30px rgba(var(--primary-color), 0.3);
}

.title--bar {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.client-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 50px;
}

    .client-logo img {
        display: block;
        max-height: 50px;
        min-height: 50px;
    }

.title--bar h1 {
    font-size: 1.5rem;
    color: #09253F;
    font-weight: 600;
    margin-bottom: 5px;
}

.title--bar p {
    font-size: 1rem;
    color: rgba(var(--primary-color), 1);
    margin-top: 5px;
}

.field--row .row {
    display: flex;
    justify-content: space-between;
}

    .field--row .row .col-xs-6 {
        width: 48.5%;
    }

.help-block {
    display: block;
    font-size: 0.8rem;
    margin-top: 15px;
    color: rgba(var(--primary-color), 0.8);
}

.input-group-addon.cursor {
    cursor: pointer;
    position: absolute;
    border: 0;
    background: none;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: rgba(var(--primary-color), 1);
}

.main--portal__container .heading h1 {
    font-size: clamp(1.2rem,2vw, 1.5rem);
}
/* Responsive CSS */
@media only screen and (max-width: 767px) {
    main {
        padding: 80px 20px;
    }

    .portal-body {
        background-image: url(/Images/Authentication/portal-login-bg.svg) !important;
    }

    header {
        left: 50%;
        transform: translateX(-50%);
    }

    .main--portal__container {
        padding: 20px;
    }
}
