* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Play', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 0.9rem !important;
}

html {
  background: #000;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
  background: url('../img/bg_login.jpg');
  background-position: center;
  background-size: cover;
  color: #eee;
}

.img-logo {
  width: 200px;
}

.img-56 {
  max-height: 56px !important;
  padding: 0px;
  text-align: center !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

@keyframes animate {
  0% {
    --a: 0deg
  }

  100% {
    --a: 360deg
  }
}

@property --a {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.box {
  position: relative;
  width: 300px;
  max-width: 320px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(from var(--a), transparent 0%, #10b354 10%, #0169fb 20%, transparent 30%, transparent 50%);
  animation: animate 6s linear infinite;
  box-shadow: 0 0 0 2px transparent;
  border-radius: 10px;
}

.box::after {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid #444444aa;
  background: #000000fe;
  border-radius: 10px;
}

form {
  position: relative;
  z-index: 1000;
}

form h2 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  padding-top: 20px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
  width: 240px;
}

.input-box span {
  position: a;
  inset: -1px;
  z-index: 1;
}

.input-box span::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: repeating-conic-gradient(from var(--a), transparent 0%, #0169fb 10%, transparent 20%, transparent 50%);
  animation: animate 3s linear infinite;
  box-shadow: 0 0 0 1px transparent;
}

.input-box:nth-child(1) span::before {
  animation-delay: 1.5s;
}

.input-box span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #333;
}

.input-box input {
  position: relative;
  outline: none;
  border: none;
  padding: 8px 10px;
  background: #000000bb;
  color: #fff;
  width: 100%;
}


.input-box input::placeholder {
  color: #fff;
  opacity: 0.5;
}

.input-box input[type="submit"] {
  background: #10b354;
  cursor: pointer;
  padding: 4px 10px;
  width: 100%;
  font-weight: 500;
  color: #000000cd;
  margin-bottom: 8px;
  box-shadow: 0, 0, 4px, #10b354;
}

.group {
  position: relative;
  top: -10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.group a {
  text-decoration: none;
  color: #10b354dd;
  font-size: 0.75em;
}

.group a:hover {
  color: #10b354;
  filter: drop-shadow(0 0 5px #10b354);
}

.text-copyright {
  text-align: center !important;
  padding-bottom: 0.5em;
  color: #10b354;
}

.center {
  margin: 0 auto;
  text-align: center !important;
}
