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

.styles-module__MksebG__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__MksebG__fadeIn;
}

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

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

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

.styles-module__MksebG__inputGroup {
  position: relative;
}

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

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

.styles-module__MksebG__input::placeholder {
  color: #ffffffb3;
}

.styles-module__MksebG__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;
  position: relative;
  overflow: hidden;
}

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

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

.styles-module__MksebG__button:hover:after {
  left: 100%;
}

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

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

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

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

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

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

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


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