.auth-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 72px);
  padding: 0;
  max-width: 32rem;
  margin: -60px auto;
}

.auth-logo {
  margin-bottom: 30px;
  max-width: 73px;
  flex-shrink: 0;
}

.auth-title {
  font-family: inherit;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
  text-align: left;
  margin-bottom: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-label {
  font-size: 20px;
  line-height: 24px;
  text-align: start;
}

.auth-label span {
  color: #1482F2;
}

.auth-tip {
  font-size: 16px;
  line-height: 1;
  color: rgba(51, 51, 51, 0.5);
}

.auth-field input {
  border-radius: 8px;
  margin-bottom: 0;
  padding: 20px;
}
.auth-field input:focus {
  box-shadow: 0 0 0 0.0625rem #1482F2;
  border-color: #1482F2;
}

.auth-field input::placeholder {
  font-size: 18px;
  line-height: 1;
  color: rgba(51, 51, 51, 0.5);
}

.auth-rememberable {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
}

.auth-checkbox input[type=checkbox] {
  width: 30px;
  height: 30px;
  margin: 0;
  border-width: 1.5px;
  background-color: transparent;
}

.auth-checkbox input[type=checkbox]:active,
.auth-checkbox input[type=checkbox]:focus,
.auth-checkbox input[type=checkbox]:hover,
.auth-checkbox input[type=checkbox]:focus-visible,
.auth-checkbox input[type=checkbox]:checked {
  border-color: rgba(20, 130, 250, 0.5);
  box-shadow: none;
}

.auth-checkbox input[type=checkbox]:checked {
  background-color: #1482F2;
}

.auth-link {
  font-size: 20px;
  line-height: 1;
  color: #1482F2;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-button {
  background-color: #1482F2;
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 8px;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  transition: background-color 0.5s ease;
}

.auth-button:hover,
.auth-button:focus,
.auth-button:active {
  background-color: var(--secondary-color);
}

.auth-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(51, 51, 51, 0.5);;
  font-weight: 600;
  font-size: 20px;
}

.auth-divider span{
  margin: 0 15px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(51, 51, 51, 0.5);
}

.auth-bottom {
  text-align: center;
  color: rgba(51, 51, 51, 0.5);
  font-size: 20px;
  margin-top: -10px;
}
