:root {
  --rojo-laix: #ff0000;
  --blanco-laix: #ffffff;
  --plomo-laix: #dadada;
}
.button {
  height: 60px;
  width: 300px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #ffffff;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}
.button1 {
  height: 60px;
  width: 400px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #ffffff;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}
.type2 svg{
  position: absolute;
  width: 24px;
  fill: rgb(255, 255, 255);
  z-index: 9;
  margin-left: 10px;
}

.btn-txt {
  z-index: 1;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
}


.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.6s ease-in-out;
  background-color: #ff0000;
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.button:hover {
  box-shadow: 1px 1px 100px #ff6b6b31;
  color: #fff;
  border: none;
}
.button1:hover {
  box-shadow: 1px 1px 100px #ff6b6b31;
  color: #fff;
  border: none;
}

.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}
