﻿html, body{
    height:100%;
    width:100%;
    margin:0px;
    padding:0px;
}

body {
    background: #000;
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    margin: 0;
}

p {
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 300;
}

h1 {
    text-align: left;
    font-weight: bold;
    color: #000;
    font-size: 26px;
}

h3 {
    color: #8a8a8a;
    font-weight: 300;
}

button,
a.button {
    align-self: start;
    background: #158AC0;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 300;
    padding: 10px 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.1s ease-in-out;
}

    button:hover,
    button:focus,
    a.button:hover,
    a.button:focus {
        background: #5BADD3;
        box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    }


.img-responsive {
    width: 100%;
    height: auto;
}

.page {
    align-content: center;
    backdrop-filter: grayscale(100%) brightness(30%);
    height: 100%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-flex-content {
    flex: 1;
    align-content: center;
    max-height: calc(100% - 90px);
    width: 650px;
    max-width: 100%;
}

main {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    min-height: 100px;
    padding:60px;
    box-sizing:border-box;
    overflow-y:auto;
    max-height:100%;
    display:flex;
    flex-direction: column;
}

main header{
    flex-grow:0;
}

main article {
    flex: 1 1 auto;
    overflow-y: auto;
}

main footer{
    flex-grow:0;
}

.page-flex-footer{
    flex-grow:0;
}

.br-logo {
    width: 190px;
    margin: 40px auto 0;
}

.login-content,
.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

    .login-content h1 {
        color: rgb(232,97,12);
        font-size: 8em;
        margin: 0;
    }

.login-logo {
    display: flex;
    margin: 0 auto 40px;
    max-width: 66%;
    max-height: 300px;
}

.login-options {
    display: flex;
    flex-direction: column;
}

.loginContainer {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 540px;
    border-radius: 999px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    margin: 10px auto;
    /*flex-direction: row;
    justify-content: space-between;*/
    background-image: url(/images/chevron-link.svg);
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 12%;
}

.loginLink {
    color: #8a8a8a;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin: 10px 15px 10px 15px;
    width: inherit;
    text-decoration: none;
}

    .loginLink:hover,
    .loginLink:focus {
        color: #158AC0;
    }

.providerLogoArea {
    border-right: 1px solid rgba(0,0,0,0.2);
    margin-right: 20px;
    padding-right: 20px;
}

.providerLogoContainer {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    border-radius: 999px;
    width: 50px;
    height: 50px;
    padding: 10px;
    justify-content: center;
}

.providerLogo {
    padding: 10px;
    height: 50px;
    width: 50px;
}

.providerDescription h2 {
    font-weight: 500;
    margin: 0 0 5px;
}

.providerDescription p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.form-group {
    margin: 20px auto;
}

.form-entry {
    display: flex;
}

.login-form label {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    display: none;
}

.login-form input.form-control {
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 999px;
    max-width: 540px;
    max-height: 100px;
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
}

    .login-form input.form-control:focus-visible {
        outline: rgba(0,0,0,0.2) auto 1px;
    }

.login-form-buttons {
    margin-top: 40px;
}

.validation-summary-errors ul {
    color: red;
    font-size: 0.9rem;
    line-height: 1.8;
    list-style-type: circle;
    padding-left: 14px;
}


.bg-center{
    background-position:center !important;
}

.text-center {
    text-align: center !important;
}

.accent-text{
    color:var(--accent-color);
}

a.btn {
    text-decoration: none;
    color: inherit;
    font-style: inherit;
    font-weight: inherit;
}

.btn {
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: none;
    padding: 15px;
    border-radius: 100px;
    display:inline-block;
    box-sizing:border-box;
    margin-top:10px;
    width: fit-content;
}

.btn i {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

.btn-center{
    margin:0 auto;
}

.btn-accent {
    color: var(--accent-text-color);
    background: var(--accent-color);
    transition: 0.4s;
}

    .btn-accent:hover {
        background: #000;
        color: #fff;
    }

.btn-accent-border {
    color: #000;
    background: #fff;
    border-color: var(--accent-color);
    transition: 0.4s;
}

    .btn-accent-border:hover {
        background: #e5e5e5;
        border-color: #000;
    }

main .client-logo {
    height: 34px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    background-image: var(--client-logo);
    margin-bottom: 60px;
}
p {
    padding: 5px;
    margin: 0px;
    font-size: 14px;
    line-height: 18px;
    color:#000 !important;
}

.spacing-top{
    margin-top:30px;
}

.hidden {
    display: none;
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
}

.custom-scroll::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2); /* Color of the track */
    border-radius: 10px; /* Rounds the track */
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    ; /* Color of the thumb (scrollbar handle) */
    border-radius: 10px; /* Rounds the thumb */
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 1);
    ; /* Thumb color on hover */
}

/* No top and bottom arrows */
.custom-scroll::-webkit-scrollbar-button {
    display: none; /* Hides the scrollbar buttons */
}


/* Media Queries */

@media only screen and (max-width: 640px) {
    .page {
        padding: 0px 0px 20px 0px;
    }

    main {
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0px;
        padding:40px 20px;
    }

        main .client-logo {
            margin-bottom: 20px;
            height: 28px;
            background-position: center;
        }

    .loginContainer {
        background: none;
    }

    .providerLogoArea {
        margin-right: 10px;
        padding-right: 10px;
    }

    .providerLogoContainer,
    .providerLogo {
        height: 30px;
        width: 30px;
    }

    .providerLogo {
        padding: 5px
    }

    .providerDescription h2 {
        font-size: 18px;
    }

    .providerDescription p {
        font-size: 14px;
    }

    .m-full-width {
        width: 100%;
    }

    .m-text-center {
        text-align:center;
    }
}