/* [project]/src/app/signup/styles.module.css [app-client] (css) */
.styles-module__bMfwhq__loginContainer {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1e3c72f2, #2a5298f2), url("/images/backgrounds/pattern.png");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.styles-module__bMfwhq__loginBox {
  background: #ffffff1a;
  padding: 3rem;
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 8px 32px #0000001a;
  border: 1px solid #fff3;
  animation: .5s ease-out styles-module__bMfwhq__fadeIn;
}

.styles-module__bMfwhq__logo {
  width: 300px;
  height: auto;
  margin-bottom: 2rem;
}

.styles-module__bMfwhq__title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px #0003;
}

.styles-module__bMfwhq__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.styles-module__bMfwhq__inputGroup {
  position: relative;
}

.styles-module__bMfwhq__input {
  width: 100%;
  padding: 1rem;
  background: #ffffff1a;
  border: 2px solid #ffffff1a;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all .3s;
}

.styles-module__bMfwhq__input:focus {
  outline: none;
  border-color: #ff8008;
  box-shadow: 0 0 20px #ff80084d;
}

.styles-module__bMfwhq__button {
  background: linear-gradient(45deg, #ff8008, #ffc837);
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all .3s;
}

.styles-module__bMfwhq__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px #ff80084d;
}

.styles-module__bMfwhq__linkText {
  color: #fff;
  margin-top: 1.5rem;
  text-align: center;
}

.styles-module__bMfwhq__link {
  color: #ff8008;
  text-decoration: none;
  font-weight: bold;
  transition: color .3s;
}

.styles-module__bMfwhq__link:hover {
  color: #ffc837;
}

@keyframes styles-module__bMfwhq__fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes styles-module__bMfwhq__float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (width <= 480px) {
  .styles-module__bMfwhq__loginBox {
    margin: 1rem;
    padding: 2rem;
  }

  .styles-module__bMfwhq__title {
    font-size: 2rem;
  }
}


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