@keyframes pulse {
  0%,
  40% {
    box-shadow: 0 0 0 5px rgba(0, 109, 168, 0);
  }
  0% {
    box-shadow: 0 0 0 0px rgba(0, 109, 168, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(0, 109, 168, 0);
  }
}
* {
    box-sizing: border-box;
  }
  html {
    height: 100%;
  }
  body {
    background-color: #354152;
    color: #7e8ba3;
    font: 300 1rem/1.5 Helvetica Neue, sans-serif;
    margin: 0;
    min-height: 100%;
  }
  .align {
    align-items: center;
    display: flex;
    flex-direction: row;
  }
  .align__item--start {
    align-self: flex-start;
  }
  .align__item--end {
    align-self: flex-end;
  }
  .site__logo {
    margin-bottom: 1rem;
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    border: 1px solid rgba(51, 64, 77);
    border-radius: 1.5rem;
    background-color: rgba(51, 64, 77);
  }
  input {
    border: 0;
    font: inherit;
  }
  input::placeholder {
    color: #7e8ba3;
  }
  .form__field {
    margin-bottom: 1rem;
    color: #fff;
  }
  .form input {
    outline: 0;
    padding: 0.5rem 1rem;
    color: #fff;
    box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
  }
  .form input[type="text"], .form input[type="password"], .form input[type="email"] {
    width: 100%;
  }
  .grid {
    margin: 0 auto;
    max-width: 25rem;
    width: 100%;
  }
  h1 {
    margin-top: 0.1rem;
    font-size: 2.0rem;
    font-weight: 50;
    margin: 0 0 0rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000000;
  }
  h2 {
    font-size: 1.4rem;
    font-weight: 30;
    margin: 0 0 1rem;
    text-transform: uppercase;
  }
  svg {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
  }
  a {
    color: #7e8ba3;
  }

  .register {
    background-color: #354152;
    box-shadow: 0 0 250px #000;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1.5rem
  }
  .register input {
    border: 1px solid #242c37;
    border-radius: 999px;
    background-color: transparent;
    text-align: center;
  }
  .alert2-warning {
    padding: 20px;
    background-color: #e9b554;
    color: white;
    border-radius: 1.5rem;
    margin-bottom: 1em;
    }
  .alert2-success {
    padding: 20px;
    background-color: #5de954;
    color: white;
    border-radius: 1.5rem;
    margin-bottom: 1em;
    }
  .alert2-info {
    padding: 20px;
    background-color: #3694f4;
    color: white;
    border-radius: 1.5rem;
    margin-bottom: 1em;
    }
  .alert2-error {
    padding: 20px;
    background-color: #f44336;
    color: white;
    border-radius: 1.5rem;
    margin-bottom: 1em;
    }
  .register input[type="email"], .register input[type="password"] {
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: 1rem 50%;
  }
  .register input[type="email"] {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="#242c37"><path d="M256.017 273.436l-205.17-170.029h410.904l-205.734 170.029zm-.034 55.462l-205.983-170.654v250.349h412v-249.94l-206.017 170.245z"/></svg>');
  }
  .register input[type="password"] {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="#242c37"><path d="M195.334 223.333h-50v-62.666c0-61.022 49.645-110.667 110.666-110.667 61.022 0 110.667 49.645 110.667 110.667v62.666h-50v-62.666c0-33.452-27.215-60.667-60.667-60.667-33.451 0-60.666 27.215-60.666 60.667v62.666zm208.666 30v208.667h-296v-208.667h296zm-121 87.667c0-14.912-12.088-27-27-27s-27 12.088-27 27c0 7.811 3.317 14.844 8.619 19.773 4.385 4.075 6.881 9.8 6.881 15.785v22.942h23v-22.941c0-5.989 2.494-11.708 6.881-15.785 5.302-4.93 8.619-11.963 8.619-19.774z"/></svg>');
  }
  .register input[type="submit"] {
    background-image: linear-gradient(160deg, #8ceabb 0%, #378f7b 100%);
    color: #fff;
    margin-bottom: 1rem;
    width: 100%;
    animation: pulse 2s ease infinite;
    transition:0.5s all linear;
  }
  .register input[type="submit"]:hover {
    background:linear-gradient(rgb(62, 99, 68),rgb(62, 99, 68)) center/100% 0px no-repeat;
    background-size:100% 100%;
  }
  #canvas{
    width:100%;
    height:100%;
    overflow: hidden;
    position:absolute;
    top:0;
    left:0;
    background-color: #1a1724;               
}
.canvas-wrap{
    position:relative;
    
}
div.canvas-content{
    position:relative;
    z-index:2000;
    color:#fff;
    text-align:center;
    padding-top:30px;
}
  small {
    margin-bottom: 0rem;
    text-align: right;
  }
  .badge-red{display:inline-block;padding:.40em .10em;font-size:75%;font-weight:700;line-height:2;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.35rem;color:#fff;background-color:#be440b}
