.login-page, .register-page{

  background-color: #ffc107 !important;
}

.note-image-input, .note-image-btn{

  padding-bottom: 30px !important;
}

fieldset {
  border: 3px solid steelblue;
}


.reset {
    all: revert;
    
}

.ps-table tbody > tr > td {
  font-family: "Work Sans", sans-serif;
  vertical-align: middle;
  padding: 20px 30px;
  border: 1px solid #ddd;
  color: #666;
}

.ps-table--specification tbody tr td:first-child {
  font-family: "Work Sans", sans-serif;
  background-color: #f4f4f4;
  font-weight: 550;
  color: #000;
  width: 150px;
 
}

/* class .

id # */

.wapper {background-color: ; }

.wapper {
   padding: 8px 13px;
   display: grid;
   place-items: center ;
   background-color: #fff
  


}


#DetalleEquipo{
  position: relative;
  display: inline-block;
  padding: 3px 7px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #03e9f4;
  font-size: 1.3rem;
  font-weight: bold;
  transition: .5s;
  overflow: hidden;
 
}
#DetalleEquipo:hover{
  background-color: #03e9f4;
  color: #050801;
  box-shadow: 0 0 5px #03e9f4,
              0 0 25px #03e9f4,
              0 0 50px #03e9f4,
              0 0 200px #03e9f4;

  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}
#DetalleEquipo:first-child{
  filter: hue-rotate(225deg);
}

#DetalleEquipo span{
  position: absolute;
  display: block;
}
#DetalleEquipo span:nth-child(1){
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: animate1 1s infinite;
}
@keyframes animate1{
  0%{
    left: -100%;
  }
  100%{
    left: 100%;
  }
}
#DetalleEquipo span:nth-child(2){
  top: -100%;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: animate2 1s infinite;
  animation-delay: .25s;
}
@keyframes animate2{
  0%{
    top: -100%;
  }
  100%{
    top: 100%;
  }
}
#DetalleEquipo span:nth-child(3){
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: animate3 1s infinite;
  animation-delay: .5s;
}
@keyframes animate3{
  0%{
    right: -100%;
  }
  100%{
    right: 100%;
  }
}
#DetalleEquipo span:nth-child(4){
  bottom: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: animate4 1s infinite;
  animation-delay: .75s;
}
@keyframes animate4{
  0%{
    bottom: -100%;
  }
  100%{
    bottom: 100%;
  }
}




/*otro estilo*/
/*
#DetalleEquipo{
  border: 0;
  background-image: linear-gradient(
    150deg,
    #9500ff,
    #09f,
    #00ddff
  );
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 18px;
  padding: 4px;
  cursor: pointer;
  transition: .3s;
}

#DetalleEquipo span{
  background-color: #1111;
  padding: 0px 24px;
  border-radius: 6px;
  transition: .3s;
}

#DetalleEquipo:hover span{
  background: none;
}

#DetalleEquipo:active{
  transform: scale(0.9);
}*/