


* {
  box-sizing: border-box;
}

:root {
  //--background-size: 50vw;
  --background-size: unquote('min(100vw, 40em)');
}

html {
  font-size: calc(100% + 0.5vw);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.001s !important;
  }
}

.container {
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  background-position: 50% 50%;
  animation: background-move 10s linear infinite;
  background-size: 100vw auto, 100% 100%;
  background-size: unquote('max(100vw, 30em)') auto, 100% 100%;

}

@keyframes background-move {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 100vw 0, 0 0;
    background-position: unquote('max(100vw, 40em)') 0, 0 0;
  }
}

.input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

@supports (mix-blend-mode: darken) {
  position: relative;
  mix-blend-mode: lighten;

  label {
    position: absolute;
    left: 3em;
    top: -0.28em;
    background: #000;
  }
}


label {
  position: absolute;
  color: black;
  right: 25px;
  margin-top: -27px;
  padding: 3px;
}

input,
select,textarea {
  text-align: right;
  height: 50px !important;
    font-weight: bold !important;
  background-color: white;
  color: black; !important;
  line-height: 1;
  border-style: none;
  outline: none;
  // height calc line-height + (vertical-padding * 2) + (vertical-border * 2)
  height: calc(1em + 1.6em + 0.5em);
  width: 100%;
  padding: 0.8em 1em;
      box-shadow: 0px 0px 5px #1b4b62;
  background-image: linear-gradient(white, white),
    linear-gradient(120deg, #f09 0%, #0ff 50%, #9f0 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 28px;
  background-size: 200% 100%;
  transition: background-position 0.8s ease-out;
  margin-bottom: 18px;

  &:hover {
    background-position: 100% 0;
  }

  &:focus {
    box-shadow: 0px 0px 10px #1b4b62;
  }
}
}

.box-info-header
{

    padding: 5px;
    border-radius: 10px 10px 0 0 ;
    margin-bottom: 0 !important;
    height: 41px;
}

.box-info-header .content-title
{
    color: white !important;
}

.box-info-header .btn-search
{
    float: left;
}
.box-infos
{
    border: 1px solid #05c1f9;
    border-top: 0;
    padding: 10px;
    margin-top: 0 !important;
    margin-bottom: 20px;
    min-height: 200px;
    height: 289px;
}
#thumb {
    display: none;
}






.card{

    width: 100%;
    height: 300px;
}
.card img{
   width: 100%;
   height:100%;
   border: 3px solid #1b4b62;
   border-radius: 5px;
}





 .user-box {
  position: relative;
}

 

  form .button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: black;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 10px;
  background: #1b4b62 ;
  border:none;
}

  .button:hover {
  background: #1b4b62;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #1b4b62,
              0 0 25px #1b4b62,
              0 0 50px #1b4b62,
              0 0 100px #1b4b62;
}

  .button span {
  position: absolute;
  display: block;
}

  .button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #1b4b62;
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

  .button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: #1b4b62;
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

  .button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: #1b4b62;
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

  .button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: #1b4b62;
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

.box-info-header,.button{
  background-color: #1b4b62 !important;
}