.card {
  /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
  transition: 0.3s;

  box-shadow: 0 15px 25px rgba(129, 124, 124, 0.2);
  border-radius: 5px;
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.2);

}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
body {
  font-family: 'Sono';
  background-image: url('images/starry.jpg');
  position: relative;
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
  color: white;

}

#reg {
  animation-name: reg;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes reg {
  0% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.05);
  }
  100% {
  transform: scale(1);
  }
}

#log {
  animation-name: log;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes log {
  0% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.05);
  }
  100% {
  transform: scale(1);
  }
}


.input-group input, .input-group-text, .form-check input, .input-group textarea {
  display:block;
  /* width:300px; */
  /* margin:20px auto; */
  /* padding:15px; */
  background:rgba(0,0,0,0.2);
  color:#fff;
  border:0;
}
.input-group input:focus,.input-group input:active, .input-group input:read-only, .input-group textarea:focus {
  /* outline:none; */
  color:white;
  background-color:rgba(0,0,0,0.2);
}

.form-check-input:checked {
  background-color: rgba(0,0,0,0.2);
  /* border-color: white; */
  }

/* .form-check-input:focus {  */
  /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px gold; */
  /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); */
/* } */

a {
  color: gold;
}

a:hover {
  color: orange;
  text-decoration:none;
}

.form-check {
  float: left;
  margin-left: .25em;
}

p.lc {
  text-align: center;
}


/* DEMO-SPECIFIC STYLES */
.typewriter h2, .typewriter h3, .typewriter h4, .typewriter h5{
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; 
  animation: 
    typing 3.5s steps(30, end),
    blink-caret .5s step-end infinite;
}

i.fa-terminal {
  color:white;
  animation: blink .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: transparent }
}

@keyframes blink {
  from, to { color: transparent }
  50% { color: white }
}

.fgpw {
  float: right;
}

.modal-content {
  color: black;
}

.g-recaptcha > div:first-of-type {
  margin: 0 auto;
}

/* remove arrow from number textbox*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}