html, body {
    height: 100%;
    margin: 0px;
    background-image: url("../media/bgImage.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

body {
    display: flex;
    flex-flow: column;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    text-align: center;
    user-select: none;
}

h2 {
  font-size: 1.5rem;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.334;
  letter-spacing: 0em;
  color: rgba(33, 51, 110, 1);
  padding-bottom: 30px;
}

header {
    padding: 10px;
}

header .right {
    text-align: right;
}

.container {
    flex: 1 0 auto;
    display: flex;
    align-items: stretch;
}

.center {
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
}

.content {
    flex: 1;
}

footer {
    color: white;
    position: fixed;
    bottom: 0px;
    width: 100%;
    text-align: right;
    border: none;
    background-color: rgba(33, 51, 110, 1);
}

footer a {
    padding-right: 10px;
    color: white;
}

a:link {
    font-size: 14px;
    text-decoration: none;
}

/* sign-in */
.form-signin {
    max-width: 330px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
    margin-bottom: 10px;
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin input[type="text"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid black;
    border-radius: 4px;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid black;
    border-radius: 4px;
}

/* Material Component Web overrules */
.mdc-top-app-bar {
    background-color: rgba(33, 51, 110, 1);
    height: 64px;
}

.mdc-top-app-bar__row {
    margin-top: -6px;
}

.mdc-text-field {
    width: 100%;
    margin-bottom: 25px;
}


.mdc-button {
    color: black !important;
    float: right;
    width: 30%;
}

.links {
    text-align: left;
    margin-bottom: 25px;
    padding-top: 10px;
}

.links a {
    color: rgba(33, 51, 110, 1);
}

.forgot-password {
    width: 70%;
    float: left;
}

/* Tooltip */

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 110%;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
