.auth-section {
  height: 100vh;
}

.auth-section .multi-theme-icon-container {
  top: 0.75rem;
  left: 0.75rem;
}

.auth-section .header-container {
  top: 0.75rem;
  left: 2.75rem;
}

.auth-section .language-dropdown {
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
}

.auth-section .auth-form-section {
  flex: 1;
  background-color: grey;
}

.auth-section .auth-form-section .auth-form-container {
  max-width: 27rem;
}

.auth-section .auth-form-section .auth-form-container .logo {
  width: auto;
  height: 3rem;
}

.auth-section .auth-form-section .auth-form-container #resetFormCard .forgot-password-title {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 2rem;
}

.auth-section .auth-form-section .auth-form-container #resetFormCard .reset-password-label {
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.auth-section .auth-form-section .auth-form-container form .input-label {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-primary);
}

.auth-section .auth-form-section .auth-form-container form .input {
  color: var(--text-primary);
  border-radius: 0.375rem;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard form .forgot-link,
.auth-section .auth-form-section .auth-form-container #resetFormCard .back-to-login-label {
  color: var(--accent-color);
  padding: 0;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard form .forgot-link:hover {
  color: var(--accent-color);
}

.auth-section .auth-form-section .auth-form-container #loginFormCard form .remember-me {
  margin-left: 0.5rem;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard .continue-label {
  text-align: center;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard .continue-label .content-line {
  position: relative;
  flex: 1 1 0%;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard .continue-label .content-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #9ca3af;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard .social-continue-btn {
  height: 2.75rem;
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid rgb(243 244 246);
  fill: var(--text-primary);
  padding: 0.5rem;
  gap: 0.5rem;
}

.auth-section .auth-form-section .auth-form-container #loginFormCard .crush-auth-container {
  gap: 1rem;
}

.auth-banner-container {
  flex: 1;
}

.accept-cookie-notification {
  position: fixed;
  height: 70px;
  left: 0;
  background-color: var(--backdrop-color);
  z-index: 1;
}

.accept-cookie-notification.show {
  bottom: 0;
  animation: slideInUp 0.3s linear;
}

.accept-cookie-notification.remove {
  bottom: -80px;
  animation: slideInDown 0.3s linear;
}

#acceptCookieNotificationCloseButton {
  top: 0;
  right: 0;
}

#customFooterLoginPageContainer {
  position: fixed;
  bottom: 70px;
  left: 0;
}

@media (max-width: 640px) {
  .auth-section .auth-form-section .auth-form-container {
    padding: 1rem 0;
  }
}

.login-main {
  background-color: #0f1013;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  transition: transform 0.2s;
  width: 500px;
  align-self: center !important;
  color: #fff;
}

