/* [project]/src/scripts/components/Button/Button.scss.css [app-client] (css) */
.button {
  color: #fff;
  background-color: #3e3e3e;
  border: none;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 225px;
  padding: 12px;
  font-size: 14px;
  display: inline-flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .08);
}

.button:hover, .button:focus {
  color: #fff;
  background-color: #000;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .22);
}

.button--primary:disabled {
  color: #aeadad;
  background-color: #ecebeb;
}

.button--secondary {
  background-color: #bdbdbd;
}

.button--secondary:hover, .button--secondary:focus {
  background-color: #8a8a8a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .22);
}

.button--empty {
  color: #8a8a8a;
  background-color: #fff;
  border: 2px solid #8a8a8a;
}

.button--empty:hover, .button--empty:focus {
  color: #8a8a8a;
  background-color: #fff;
}

.button--empty-active, .button--empty-active:hover, .button--empty-active:focus {
  color: #fff;
  background-color: #434343;
}

.button--empty-black {
  color: #3e3e3e;
  background-color: #fff;
  border: 1px solid #3e3e3e;
}

.button--empty-black:hover, .button--empty-black:focus {
  color: #3e3e3e;
  background-color: #fff;
}

.button--empty-black:disabled {
  color: #aeadad;
  background-color: #e6e6e6;
  border-color: #aeadad;
}

.button--empty-grey {
  color: #8a8a8a;
  background: #fff;
  border: 1px solid #ecede8;
  border-radius: 4px;
  padding: 8px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .08);
}

.button--empty-grey:hover, .button--empty-grey:focus {
  color: #8a8a8a;
  background-color: #fff;
}

.button--large {
  min-width: 330px;
  min-height: 80px;
  padding: 0 30px;
  font-size: 30px;
  font-weight: 600;
}

.button--big {
  min-width: 120px;
  height: 40px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 600;
}

.button--small {
  min-width: 140px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.button--extra-small {
  min-width: 89px;
  height: 36px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.button--red {
  background-color: #e30613;
}

.button--red:hover, .button--red:focus {
  background-color: #a30e11;
}

.button--blue {
  background-color: #2f80ed;
}

.button--blue:hover, .button--blue:focus {
  background-color: #0763de;
}

.button--block {
  width: 100%;
  min-height: 35px;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 600;
}

.button--link {
  all: unset;
  color: #434343;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.button--link:hover, .button--link:focus {
  all: unset;
  color: #3e3e3e;
  cursor: pointer;
  font-weight: 600;
}

/* [project]/src/app/login/Login.scss.css [app-client] (css) */
.login-page {
  background-image: url("../media/team-logo-l.445330ff.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.login-page__content {
  opacity: .95;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 460px;
  height: 520px;
  display: flex;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.login-page .login-page__title {
  text-align: center;
  margin-top: 30px;
  font-size: 32px;
  font-style: normal;
  font-weight: bold;
  line-height: 115.5%;
}

.login-page .login-page__subtitle {
  text-align: center;
  margin-top: 15px;
  margin-left: 41px;
  margin-right: 41px;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 115.5%;
}

.login-page__button {
  border-radius: 2px;
  width: 182px;
  height: 40px;
  margin-top: 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 115.5%;
}

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