.auth {
   padding: 140px 10px 20px 10px;
   min-height: 100%;
   display: flex;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
}

@media(max-width: 992px) {
   .auth {
      padding-top: 80px;
   }
}

@media(max-width: 768px) {
   .auth {
      padding-top: 60px;
   }
}

.auth__container {
   padding: calc(15px + (35 - 15) * ((100vw - 320px) / (1440 - 320))) calc(20px + (25 - 20) * ((100vw - 320px) / (1440 - 320)));
   /* border: 1px solid #000; */
   box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
   border-radius: 6px;
   flex: 1 1 auto;
   display: flex;
   align-items: center;
}

.auth__title {
   text-align: center;
   font-weight: 500;
   font-size: calc(22px + (27 - 22) * ((100vw - 320px) / (1440 - 320)));
   margin-bottom: 20px;
}

.auth__form {
   flex: 1 1 auto;
}

.auth-error {}

.auth__label {
   display: inline-block;
   margin: 10px 0 15px 0;
   font-weight: 500;
   color: #000;
}

.auth__input {
   font-weight: 500;
   font-size: 18px;
}

.auth__input::placeholder {
   font-size: 16px;
   font-weight: 400;
}

.auth__footer {
   margin-top: 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.auth__footer_forgot {
   justify-content: flex-end;
}

.auth__info {
   font-size: 17px;
   color: #000;
   font-weight: 500;
   margin-right: 10px;
}

.auth__info a,
.signin__forgot {
   color: #0d6efd;
}

.auth__info a {
   text-decoration: underline;

}

.auth__btn {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   padding: 0px 20px;
   min-height: 45px;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.8px;
   transition: background-color 0.4s ease 0s;
   border-radius: 30px;
   color: #fff;
   background-color: var(--primary);
}

.auth__btn:disabled {
   opacity: 0.8;
   cursor: not-allowed;
}

.auth__btn:focus {
   background-color: #205c91;
}

@media(any-hover: hover) {

   .signin__forgot:hover,
   .auth a:hover,
   .signin__forgot:focus,
   .auth a:focus {
      color: #0a58ca !important;
   }

   .auth__btn:hover {
      background-color: #205c91;
   }
}

@media(max-width: 767px) {
   .auth__btn {
      min-height: 40px;
      font-size: 16px;
   }
}

.auth__image {
   display: none;
}

@media(min-width: 992px) {
   .auth__image {
      display: block;
      flex: 0 1 50%;
   }
}

.auth__image img {
   max-width: 100%;
}