.container {
    margin-top: 72px;
}

.avatar {
    margin: auto;
    width: 40px;
    height: 40px;
}

.avatar .material-icons {
    color: white;
    height: 100%;
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 7px;
}

.login-container .container h1 {
    font-size: 1.5rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.334;
    letter-spacing: 0em;
    margin-top: 8px;
    text-align: center;
}

/* old style for new connect button (SH) */

.loginButton {
    width: 20%;
    text-align: center ;
}


/* Modified styles for new connect button (SH) */
.btn{
	/* background-color: rgb(13, 71, 161); blue button */
	margin-top: 30px ;
}
.btn-text-center{
	text-align: center;
	color: white;
}

.loginMessage {
    color: red;
    font-weight: bold;
}


/* https://loading.io/css/ */

.lds-ring {
    margin: auto;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #0d47a1;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #0d47a1 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* https://stackoverflow.com/questions/37127123/change-color-of-underline-input-and-label-in-materialize-css-framework */


/* Inactive/Active Default input field color */

.input-field input[type]:focus:not([readonly]),
.input-field input[type='password']:focus:not([readonly]) {
    border-bottom: 1px solid #0d47a1;
    box-shadow: 0 1px 0 0 #0d47a1;
}


/* Inactive/Active Default input label color */

.input-field input[type]:focus:not([readonly])+label {
    color: #0d47a1;
}

.input-field input[type="checkbox"]:checked+span:not(.lever)::before {
    border-right: 2px solid #0d47a1;
    border-bottom: 2px solid #0d47a1;
}
