@font-face {
font-family: 'Calibri';
font-style: normal;
font-weight: bold;
src: url('fonts/Calibri.woff') format('woff');
}
@font-face {
font-family: 'Calibri';
font-style: normal;
font-weight: bold;
src: url('fonts/Calibri.woff2') format('woff2');
}

body {
	background-color: #c8c8d8;
    opacity: 1;
    transition: 3s opacity;
    }
    body.fade {
        opacity: 0;
        transition: none;
    }

.login {
  box-shadow: 1px 1px 5px #888;
  background: #ddd8dd;
  font: 18px Calibri, sans-serif;
  border:1px solid #6b6b6b;
  padding:20px 26px; 
  width:320px;
  border-radius:8px;
  text-align: center;
  font-weight: bold;
  backdrop-filter: blur(10px);  
}
.page {
	align-content: center;
    border: solid 1px #6b6b6b;
    padding: 4px 12px; 
	border-radius: 6px;
    background: #fff;
    box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1);
    font-size: .875em;
    font-weight: bold;
    text-decoration: none;
    color: #111111;
    text-shadow: 0px 1px 0px rgba(255,255,255, 1);
}
.heighttext{
  height:22px;
  font-size: 14px;
}
.container{
    /* Calculate the width */
    width: calc(100% - 400px);
    text-align:center;
    padding:15px 0;
    margin: 0 auto;
}

button {
  background-color: #ffffff;
  border: 1px solid #999;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
  display: block;
  font: 18px Calibri, sans-serif;
  margin: 4px 0 0 0;
  padding: 5px;
}

button:hover {
  background-color: #fff;
  color: black;
}

button#sign-in {
  margin: 0px 0 0 0;
}

button#toggle-password {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  /* Display at the top right of the password section */
  position: absolute;
  top: 104px;
  right: 32px;
}
input:invalid {
  border: 2px solid grey;
}

input:invalid:required {
  border: 2px solid grey;
}

input:valid {
  border: 2px solid white;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted grey;
  cursor: pointer;
}

.tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: grey;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}