/*-------------------------------
  LOGIN
-------------------------------*/
.auth-container {
  width: 100vw;
}

.auth-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-brand-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 2rem;
}


.login-header h2 {
  color: var(--text-color);
}

.login-header h3 {
  color: var(--text-color);
}

.login-form .form-label {
  color: var(--secondary-text-color);
}


/* Ширина < 991px */
@media (max-width: 991px) {
  .login-brand-icon img {
    width: 80px;
    height: 80px;
  }

  .login-header h2 {
    font-size: 2rem;
  }

  .login-header h3 {
    font-size: 1rem;
  }

}



/* Ширина > 992px */
@media (min-width: 992px) {

  .login-brand-icon img {
    width: 120px;
    height: 120px;
  }

  .login-header h2 {
    font-size: 3rem;
  }

  .login-header h3 {
    font-size: 2rem;
  }
}