﻿
body {
    margin: 0;
    min-height: 100vh;
}

.outer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: dimgrey;
    font-family: museo-sans, sans-serif;
    overflow: hidden;
}

.middle {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: auto;
    z-index: 10;
}

.inner {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px 0 rgba(176,183,196,0.2);
    width: 510px;
    padding: 60px 80px 60px 80px;
}

.build-info {
    display: block;
    width: 100%;
    color:  white;
    position: absolute;
    padding: initial;
    top: 6px;
    left: 6px;
    z-index: 9999; /* Set z-index to topmost */
}

.business-scroll {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.h1-greeting {
    color: #FFFFFF;
    font-size: 64px;
    line-height: 87px;
    font-weight: bold;
    text-align: left;
    width: 500px;
    margin-left: 113px;
}

@media only screen and (max-width: 1024px) {
    .h1-greeting {
        display: none;
    }
}

h2 {
    color: #4A515C;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

h3 {
    color: #B0B7C4;
    font-size: 26px;
    font-weight: normal;
    line-height: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.btn-signin {
    width: 100%;
}

input {
    box-sizing: border-box;
    width: 100%;
}

.account-link {
    color: #B0B7C4;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.forgotten-password {
    margin-top: 40px;
}

.login-text {
    display: block;
    font-size: 25px;
}

.field-validation-error {
    color: #f00;
    font-size: 1em;
}

.alert {
    text-align: center;
}

.accept-terms {
    height: initial;
    white-space: nowrap;
    min-height: initial;
}

.accept-terms input[type='checkbox'] {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-left: 5px;    
}

    .accept-terms a {
        display: initial;
        text-decoration: underline;
    }

.accept-terms > div {
    width: 100vw;
    white-space: nowrap;
}

.company-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}


.summary {
    text-align: center;
}

.large-pink-bubble {
    position: absolute;
    width: 80vw;
    height: 80vw;
    background: linear-gradient(100deg, #B965D3 0%, #E6456E 100%);
    border-radius: 50%;
    animation: large-pink-bubble linear 26s infinite;
    z-index: 2;
}

@keyframes large-pink-bubble {
    0% {
        bottom: -50vw;
        left: -25vw;
    }

    50% {
        bottom: -60vw;
        left: -35vw;
    }

    100% {
        bottom: -50vw;
        left: -25vw;
    }
}

.large-blue-bubble {
    position: absolute;
    width: 100vw;
    height: 100vw;
    background: linear-gradient(144.9deg, #15FFCD 0%, #2EA9E6 100%);
    border-radius: 50%;
    animation: large-blue-bubble linear 20s infinite;
    z-index: 3;
}

@keyframes large-blue-bubble {
    0% {
        top: -80vw;
        right: -80vw;
    }

    50% {
        top: -70vw;
        right: -70vw;
    }

    100% {
        top: -80vw;
        right: -80vw;
    }
}

.medium-purple-bubble {
    position: absolute;
    width: 20vw;
    height: 20vw;
    background: linear-gradient(333.47deg, #B965D3 0%, #E6456E 100%);
    border-radius: 50%;
    animation: medium-purple-bubble linear 100s infinite;
    z-index: 9;
}

@keyframes medium-purple-bubble {
    0% {
        right: 5vw;
        bottom: 5vw;
    }

    50% {
        right: 45vw;
        bottom: 35vw;
    }

    100% {
        right: 5vw;
        bottom: 5vw;
    }
}

.large-grey-bubble {
    position: absolute;
    width: 70vw;
    height: 70vw;
    background-color: rgba(21, 255, 205, 0.1);
    border-radius: 50%;
    animation: large-grey-bubble linear 40s infinite;
    z-index: 1;
}

@keyframes large-grey-bubble {
    0% {
        bottom: -60vw;
        right: -20vw;
    }

    50% {
        bottom: -60vw;
        right: -30vw;
    }

    100% {
        bottom: -60vw;
        right: -20vw;
    }
}

.passwordinfo {
    top: -35px;
    left: calc(100% + 10px);
}

.formgroup {    
    position: relative;
}

.formgroup__help {
    position: absolute;
    top: 30px;
    right: -30px;
}

.formgroup__tooltip > h1 {
    margin-left: 20px;
    font-size: 1em;
    color: #999;
}

.formgroup__help .formgroup__tooltip {
    visibility: hidden;
    font-size: .75em;
    border: 1px solid lightgrey;
    border-radius: 6px;
    background-color: white;
    padding: 5px 10px;
    width: 500px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.formgroup__help .formgroup__tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 30px;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.formgroup__help:hover .formgroup__tooltip {
    visibility: visible;
}

.button--block {
    width: 100%;
}