*, ::before, ::after {
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
      background-attachment: fixed;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
}
h1 {
  color: var(--headerTextColor);
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}
.container {
  max-width: 684px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
  background: rgba(0,0,0,.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
  /*! position: absolute; */
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0px;
  /*! margin-right: -15px; */
  /*! position: unset; */
}
.column {
  max-width: 100%;
  flex: 0 0 100%;
  min-height: 1px;
  /*! padding-left: 15px; */
  /*! padding-right: 15px; */
  margin-bottom: 12px;
  /*! margin-top: 30px; */
  justify-content: center;
  text-align: center;
  /*! flex-wrap: wrap; */
}
.column-buttons {
  max-width: 100%;
  flex: 0 0 50%;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 15px;
  margin-bottom: 12px;
  margin-top: 30px;
}

.user-box {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 280px;
}
.dynamic-form{
  /*! border: 1px; */
  
  background: #00000045;
  border-radius: 10px;
  border: 14px;
  padding-top: 16px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}
.color-box {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 280px;
}

.user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}

.user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.color-box input[type="color"] {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  /*! color: #fff; */
  margin-bottom: 12px;
  border: none;
  /*! border-bottom: 1px solid #fff; */
  outline: none;
  background: transparent;
  height: 50px;
  /*! border-radius: 20%; */ 
}

.color-box label {
  position: absolute;
  top: -20px;
  left: 0;
  padding: 10px 0;
  font-size: 12px;
  color: #03e9f4;
  pointer-events: none;
  transition: .5s;
}

.user-box input:focus ~ label,
.user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}

img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .column {
    flex: 0 0 100%;
    padding-left: 0px;
  }
  .column-buttons {
    flex: 0 0 100%;
  }
  .user-box {
    max-width: 100%;
  }
}

a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: var(--text_color);
  font-size: 19px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 1px;
  letter-spacing: 4px;
  background-color: var(--bg_color);
  margin-bottom: 14px;
  width: 100%;
}

a:hover {
  background: var(--hv_bg_color);
  color: var(--hv_text_color);
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 5px var(--hv_bg_color),
              0 0 25px var(--hv_bg_color),
              0 0 50px var(--hv_bg_color),
              0 0 100px var(--hv_bg_color);
}

a span {
  position: absolute;
  display: block;
}

a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hv_bg_color));
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--hv_bg_color));
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, var(--hv_bg_color));
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--hv_bg_color));
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}
