/* [project]/src/app/welcome.module.css [app-client] (css) */
.welcome-module__gb04Ja__container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.welcome-module__gb04Ja__container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/backgrounds/company.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .5;
  filter: blur(2px);
  z-index: 1;
}

.welcome-module__gb04Ja__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0006;
  backdrop-filter: blur(8px);
  z-index: 0;
}

.welcome-module__gb04Ja__shape {
  position: absolute;
  background: url("/images/backgrounds/.png");
  background-size: contain;
  opacity: .2;
  filter: hue-rotate(45deg);
}

.welcome-module__gb04Ja__shape:first-child {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
  animation: 15s ease-in-out infinite welcome-module__gb04Ja__float;
}

.welcome-module__gb04Ja__shape:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
  animation: 20s ease-in-out infinite reverse welcome-module__gb04Ja__float;
}

@keyframes welcome-module__gb04Ja__backgroundFloat {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100% 100%;
  }
}

@keyframes welcome-module__gb04Ja__float {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  80% {
    transform: translateY(-20px)rotate(5deg);
  }
}

.welcome-module__gb04Ja__main {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.welcome-module__gb04Ja__content {
  margin-top: -100px;
  text-align: center;
  max-width: 800px;
}

.welcome-module__gb04Ja__logo {
  position: relative;
  left: 60px;
}

.welcome-module__gb04Ja__title {
  font-size: 4rem;
  color: #fff;
  margin: 2rem 0;
  text-shadow: 0 0 10px #ffffff4d;
  animation: 1s ease-out welcome-module__gb04Ja__fadeIn;
}

.welcome-module__gb04Ja__highlight {
  background-color: #f14a00;
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.welcome-module__gb04Ja__description {
  font-size: 1.2rem;
  color: #fffc;
  margin-bottom: 3rem;
  animation: 1s ease-out .3s backwards welcome-module__gb04Ja__fadeIn;
}

.welcome-module__gb04Ja__buttonContainer {
  display: flex;
  gap: 2rem;
  justify-content: center;
  animation: 1s ease-out .6s backwards welcome-module__gb04Ja__fadeIn;
}

.welcome-module__gb04Ja__loginButton, .welcome-module__gb04Ja__signupButton {
  padding: 1rem 3rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.welcome-module__gb04Ja__loginButton {
  background-color: #f14a00;
  color: #fff;
}

.welcome-module__gb04Ja__signupButton {
  background-color: #46b0e9;
  color: #fff;
}

.welcome-module__gb04Ja__buttonGlow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(#0000, #fff3, #0000);
  transform: rotate(45deg);
  transition: all .5s;
}

.welcome-module__gb04Ja__loginButton:hover, .welcome-module__gb04Ja__signupButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #ff80084d;
}

.welcome-module__gb04Ja__loginButton:hover .welcome-module__gb04Ja__buttonGlow, .welcome-module__gb04Ja__signupButton:hover .welcome-module__gb04Ja__buttonGlow {
  left: 100%;
}

@keyframes welcome-module__gb04Ja__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 768px) {
  .welcome-module__gb04Ja__title {
    font-size: 2.5rem;
  }

  .welcome-module__gb04Ja__buttonContainer {
    flex-direction: column;
    gap: 1rem;
  }
}


/*# sourceMappingURL=src_app_welcome_module_17ac0f.css.map*/
