/* all strict responsive styles and rules */
/* small screen */
@media only screen and (min-width: 576px) and (max-width: 768px) {
}

/* medium screen */
@media only screen and (min-width: 768px) and (max-width: 992px) {
}

/* large screen */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
}

/* X-large */
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

/* XX-large */
@media only screen and (min-width: 1400px) {
}

/* ============================================================================================================================= */

/* all minimum width responsive styles and rules */
/* small screen */
@media only screen and (min-width: 576px) {
  .auth-form .auth-form-footer {
    flex-direction: row;
    align-items: center;
  }
  /* .auth-section .card {
    padding: 80px;
  } */
  .social-auth {
    flex-direction: row;
  }
}

/* medium screen */
@media only screen and (min-width: 768px) {
  .auth-section .card {
    padding: 50px;
    border-radius: 32px;
  }

  .auth-section .info h1 {
    font-size: 48px;
  }
  .auth-section {
    gap: 50px;
  }
}

/* large screen */
@media only screen and (min-width: 992px) {
  p {
    font-size: 16px;
  }
  .auth-section .card h2 {
    font-size: 40px;
  }
  .auth-section .card {
    order: 1;
  }

  .auth-section {
    flex-direction: row;
  }
  .auth-section .info {
    order: 2;
  }
}

/* X-large */
@media only screen and (min-width: 1200px) {
  .auth-section .card {
    padding: 110px 100px;
    border-radius: 32px;
  }
  .auth-form .row {
    flex-direction: row;
  }
  .auth-section {
    gap: 100px;
  }
}

/* XX-large */
@media only screen and (min-width: 1400px) {
}
