﻿body {
    background-color: #E4E9ED;
    color: white;
}

h2 {
    text-align: center;
}

.Instance {
    border: 1px solid white;
    border-radius: 2em;
    margin-top: 1em;
    padding: 0.3em;
    font-size: 2em;
}


.Instance:hover {
    background-color: #f08080;
    cursor: pointer;
}

img {
    border-radius: 50%;
    width: 3em;
}

.container {
    display: none;
}

.Authenticating {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #757575;

    position: fixed;
    top: 50%;
    margin-top: -24px;
}
.spinner {
    height: 40px;
    width: 40px;
    /* margin: -25px 0 0 -25px; */
    margin: auto;
    border: 8px solid #B0B0B0;
    border-top: 8px #0C9ECA solid;
    border-radius: 50%;
    -webkit-animation: spin2 1s infinite linear;
    animation: spin2 1s infinite linear;
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

div.authentication-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.authentication-container > p {
    font: Roboto;
    font-size: 14px;
    line-height: 20px;
    color: #757575;
}
