.login-page {
    width: 100%;
    padding: 8% 0 0;
    margin: auto;
    height: 100%;
    /* background-color: rgba(174, 76, 157, 0.4); */
  }
  .form {
    position: relative;
    z-index: 1;
    /* background: transparent; */
    background: rgba(184, 199, 250, 0.1);
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 65px 90px 25px 90px;
    text-align: center;
    /* box-shadow: 0 0 4px 0 rgba(4, 58, 233, 0.2), 0 4px 4px 0 rgba(4, 58, 233, 0.2); */
    border-radius: 4px;
    border: 0.5px double rgba(4, 58, 233, 0.2);
  }
  .form input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    /* background: #b8c7fa; */
    width: 100%;
    border: 0;
    margin: 30px 0 15px 0;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid slategrey;
    color: slategrey;
    text-align: center;
    float: left;
    font-weight: 700;
  }
  .form button {
    font-family: "Roboto", sans-serif;
    outline: 0;
    border: none;
    width: auto;
    /* border: 0; */
    border-radius: 4px;
    padding: 10px;
    color: white;
    font-size: 16px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
    background: black;
    /* float: right; */
    margin-bottom: 30px;
    font-weight: 400;
  }
  .form button:hover,.form button:active,.form button:focus {
    /* background: #043ae9; */
    background: slategrey;
    color: white;
  }
  .form .message {
    margin: 15px 0 0;
    color: #b8c7fa;
    font-size: 12px;
  }
  .form .message a {
    color: black;
    text-decoration: none;
  }
  .form .register-form {
    display: none;
  }
  .container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
  }
  .container:before, .container:after {
    content: "";
    display: block;
    clear: both;
  }
  .container .info {
    margin: 50px auto;
    text-align: center;
  }
  .container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: black;
  }
  .container .info span {
    color: #4d4d4d;
    font-size: 12px;
  }
  .container .info span a {
    color: #000000;
    text-decoration: none;
  }
  .container .info span .fa {
    color: #EF3B3A;
  }
  body {
      /*background: <?php printf( "#%06X\n", mt_rand( 0, 0x222222 )); ?>;*/
    /* background: rgba(184, 199, 250, 0.1); */
    background: white;
    padding: 0;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .small {
      font-size: 11px;
      line-height: 1.15;
      text-align: left;
      margin-top: 40px;
      padding-top: 50px;
  }
  h1 {
      color: black;
      /* text-decoration: underline; */
      /* text-transform: uppercase; */
      font-size: 24px;
      margin-bottom: 30px;
  }
  h1.error {
      color: #AE4F4C;
  }
  strong {
    /* color: #043ae9; */
    font-style: italic;
  }