﻿html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #dcdcdc;
    font-family: 'Exo', sans-serif;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.footer a {
    text-decoration: none;
    color: black;
}

.login-headline {
    font-size: 2em;
}

.form-control-with-indicator {
    position: relative;
}

.form-control-with-indicator input {
    padding-right: 2.5rem !important;
}

.form-control-with-indicator .status-indicator {
    position: absolute;
    top: 0.7rem;
    right: 6.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 3px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #fff;
}

.form-control-with-indicator .status-connected {
    background-color: #28a745;
}

.form-control-with-indicator .status-disconnected {
    background-color: #ba1616;
}

.form-control-with-indicator .status-connecting {
    background-color: #797979;
}

.form-control-with-indicator .status-connected::before {
    content: "\2713";
    font-size: 1rem;
    font-weight: bold;
}

.form-control-with-indicator .status-disconnected::before {
    content: "\2716";
    font-size: 1rem;
    font-weight: bold;
}

.form-control-with-indicator .status-connecting::before {
    content: "\2026";
    font-size: 1rem;
    font-weight: bold;
}

.form-control[readonly].pin-entry {
    background-color: white !important;
}