.auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

.auth label,
.auth p,
.auth span,
.auth a,
.auth h1,
.auth h2,
.auth h3,
.auth h4,
.auth h5,
.auth h6 {
  color: #5e5873;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.auth a {
  color: #8347e5;
  font-size: 13px;
}

.auth label {
  font-size: 13px;
  margin-bottom: 0.25rem;
}

.auth .form-group {
  margin-bottom: 1rem;
  position: relative;
}

.auth p {
  font-size: 15px;
}

.auth .btn-eye {
  position: absolute;
  right: 0;
  top: 3px;
  background-color: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.25);
}

.auth .btn-eye:hover,
.auth .btn-eye:focus {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.75);
}

.auth.auth__form-left .auth__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.auth.auth__form-left .auth__form {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.auth.auth__form-left .auth__logo-form {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.auth.auth__form-left .auth__title {
  text-align: center;
  margin-bottom: 3rem;
}

.auth__logo-form {
  max-width: 300px;
}

.auth__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f8f8f8;
  height: 100%;
  position: relative;
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}

.auth__form {
  height: 100%;
  width: 33%;
  background-color: #fff;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.auth__form form {
  width: 100%;
}

.auth__title {
  font-size: 1.5rem;
  color: #5e5873;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.btn-signin {
  background-color: #8347e5;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
}

.auth__logo {
  position: absolute;
  max-width: 90px;
}

.auth__logo.top-left {
  left: 30px;
  top: 30px;
}

.auth__logo.top-right {
  right: 30px;
  top: 30px;
}

.auth__logo.bottom-left {
  left: 30px;
  bottom: 30px;
}

.auth__logo.bottom-right {
  right: 30px;
  bottom: 30px;
}

.auth__bg {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.auth__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}

.auth__social a {
  width: 34px;
  height: 34px;
  margin: 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #8347e5;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.auth__social a:hover {
  text-decoration: none;
  background-color: #5c1cc4;
}

@media (max-width: 1024px) {
  .auth__image {
    background-size: contain;
  }

  .auth__form {
    width: 45%;
  }
}

@media (max-width: 800px) {
  .auth__image {
    display: none;
  }

  .auth__form {
    padding-left: 2rem;
    padding-right: 2rem;
    min-height: 500px;
    overflow-y: auto;
    max-width: 100%;
    width: 100%;
  }

  .auth__logo-form {
    display: block;
  }
}

