#login-container,
#signup-container {
  padding: 24px;
  display: flex;
  gap: 24px;
  width: 100%;
}

#login-container.center-container,
#signup-container.center-container {
  justify-content: center;
}

#login-container.full-height,
#signup-container.full-height {
  height: 100%;
}

.auth-block,
.auth-preview {
  width: 50%;
}

.auth-block {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.logo-title {
  font-size: 30px;
  line-height: 1;
}

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

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

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

.auth-label span {
  color: #CA12AA;
}

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

.auth-error {
  font-size: 16px;
  color: #B8044D;
}

.auth-field input {
  border-radius: 8px;
}
.auth-field input:focus {
  box-shadow: 0 0 0 0.0625rem #CA12AA;
  border-color: #CA12AA;
}

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

.auth-rememberable {
  display: flex;
  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: 2px;
}

.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(202, 18, 170, 0.5);
  box-shadow: none;
}

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

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

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

.auth-button {
  background: linear-gradient(
    90deg,
    rgba(202, 18, 170, 1) 0%,
    rgba(136, 17, 144, 1) 60%,
    rgba(72, 17, 114, 1) 120%
  );
  background-size: 200% 100%;
  background-position: left center;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  text-align: center;
  transition: background-position 0.6s ease;
}

.auth-button:hover {
  background-position: right center;
}

.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;
}

.auth-bottom-link {
  color: #333;
  margin-left: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.auth-bottom-link:hover {
  color: rgba(202, 18, 170, 1);
}


.auth-preview {
  max-width: 100%;
}

.auth-image {
  border-radius: 8px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}