/** log in **/

body {
    width: 35em;
    text-align: center;
    margin: 0 auto;
    font-family: Tahoma, Verdana, Arial, sans-serif;
}
  form {
    width: 250px;
    display: block;
    margin: 5em auto 0 auto;
    background: #f3f3f3;
    border-radius: 5px;
    box-shadow: 0 0 2px black;
}
  form h3 {
    font-size: 1em;
    text-align: center;
    background: #343a40;
    color: white;
    margin: 0 0 10px 0;
    padding: 5px 0 10px 0;
    border-radius: 5px 5px 0 0;
}
  form h3 img {
    margin-right: 1ch;
    height: 1em;
    opacity: 0.6;
}
  form table {
    width: 100%;
    text-align: left;
    padding: 5px;
}
  form label {
    display: block;
}
  form label {
    display: block;
}
  input:not([name="login"]){
    width: 100%;
    box-sizing: border-box;
}

  td:first-child {
    color: #777777;
    font-size: .9em;
}

  tr:last-child {
    text-align: center;
}

  tr:last-child td {
    padding-top: 1em;
}

  .invalid {
    color: red;
    width: 100%;
    text-align: center;
    display: block;
    margin: 5px;
}
  .note {
    font-size: .9em;
    color: gray;
}

/** successful **/
.container {
    text-align: center;
    max-width: 30em;
    margin: auto;
    padding: 0 1em;
}
.progress {
    width: 10em;
    margin: 2em auto;
}
.bar {
    width: 100%;
    height: 1em;
    border: 1px solid #ffe188;
    position: relative;
}
.fill {
    position: absolute;
    transition: width linear 2.5s;
    height: 1em;
    width: 0%;
    display: block;
    background-color: #ffe188;
}
.text {
    position: absolute;
    color: #ebc34c;
    top: -0.05em;
    width: 100%;
    font-size: .95em;
    mix-blend-mode: color-dodge;
}