﻿body {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#8a8a8a+0,e5e5e5+33,e5e5e5+66,8a8a8a+100 */
    background: #8a8a8a; /* Old browsers */
    background: -moz-linear-gradient(45deg, #8a8a8a 0%, #e5e5e5 33%, #e5e5e5 66%, #8a8a8a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #8a8a8a 0%,#e5e5e5 33%,#e5e5e5 66%,#8a8a8a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #8a8a8a 0%,#e5e5e5 33%,#e5e5e5 66%,#8a8a8a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a8a8a', endColorstr='#8a8a8a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    margin: 0;
}

p {
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 300;
}

h1 {
    color: #158AC0;
    font-weight: 300;
    font-size: 22px;
    text-align: center;
}

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);
}

main {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    margin: 20px auto 0;
    min-height: calc(100vh - 280px);
    padding: 40px 0;
    width: 600px;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.page {
    align-content: center;
    background: none;
    background-attachment: fixed;
    background-image: url(/images/blackrainbow-stripes-4-percent.svg);
    background-position: center;
    background-size: cover;
    min-height: calc(100vh - 40px);
    padding: 20px;
}

.br-logo {
    max-width: 200px;
    height: auto;
    margin: 40px auto 0;
}

.login-content,
.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 80%;
    min-height: calc(100vh - 280px);
}

.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;
}

/* Media Queries */

@media only screen and (max-width: 640px) {
    main {
        width: 100%;
    }

    .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;
    }
}
