@font-face {
  font-family: "SVN-Nolan Next";
  src: url("../fonts/SVN-NolanNext-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "SVN-Nolan Next";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

section {
  width: 100%;
  position: relative;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 6%;
  padding-right: 6%;
}
.flex-col{
    flex-direction:column
}
.section-register {
    background-image: url("../images/bg_background.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    min-height: 100vh;
}

.section-download {
  background-image: url("../images/bg_download.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
}

@media (min-width: 1280px) {
  .section-register,
  .section-download {
    background-size: auto 100%;
    background-position: center;
  }
}

@media (min-width: 1919px) {
  .section-register,
  .section-download {
    background-size: 100% 100%;
  }
}

.text-highlight {
  color: #ff0000;
}

.text-des {
  font-size: 12px;
}

.button--title {
  text-shadow: 0px 0px 8px #fff;
  -webkit-animation: textAnimation 1s infinite;
  -moz-animation: textAnimation 1s infinite;
  -o-animation: textAnimation 1s infinite;
  animation: textAnimation 1s infinite;
}

.button--frame {
  animation: zoomInButton 1s infinite;
}

@keyframes textAnimation {
  0% {
    color: #ff0000;
    text-shadow: 0px 0px 8px #ff0000;
  }

  50% {
    color: #fff;
    text-shadow: 0px 0px 8px #fff;
  }
  100% {
    color: #ff0000;
    text-shadow: 0px 0px 8px #ff0000;
  }
}

@keyframes zoomInButton {
  0% {
    scale: 1;
  }

  50% {
    scale: 0.9;
  }

  100% {
    scale: 1;
  }
}
