/* [project]/components/Buttons.scss.css [app-client] (css) */
.gradient-primary {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  color: #fff;
}

/* [project]/components/LoginForm/LoginForm.scss.css [app-client] (css) */
.login-form {
  background: #fffffff2;
  border-radius: 16px;
  flex-direction: column;
  gap: 20px;
  width: 80%;
  height: 273.94px;
  display: flex;
  position: relative;
  margin-top: 32px !important;
  padding-top: 20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 768px) {
  .login-form {
    align-items: center;
    width: 448px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.login-form .login-form__bg-top-right {
  background-image: url("/images/login-form-top-right.png");
  background-position: center;
  background-size: cover;
  width: 128px;
  height: 128px;
  position: absolute;
  top: 0;
  right: 0;
}

.login-form .login-form__bg-bottom-left {
  z-index: 10;
  background-image: url("/images/login-form-left-bottom.png");
  background-position: center;
  background-size: cover;
  width: 128px;
  height: 128px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.login-form .button {
  background-color: var(--color-secondary-light);
}

/*# sourceMappingURL=components_4e2699f0._.css.map*/