.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  background-color: var(--sidebar-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-height: 600px;
}


.login-form-section {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--accent-color);
}

.login-form-content {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.welcome-title {
  font-family: 'Audiowide', sans-serif;
  font-size: 2rem;
  color: var(--minor-text-color);
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.welcome-subtitle {
  color: var(--secondary-text-color);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}


.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Silkscreen', monospace;
  font-size: 0.85rem;
  color: var(--text-color);
}

.form-group input {
  font-family: 'Roboto Mono', monospace;
  padding: 0.85rem 1rem;
  background-color: var(--sidebar-bg);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: var(--secondary-text-color);
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(250, 194, 99, 0.1);
}


.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 3rem;
}

.toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--secondary-text-color);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: var(--text-color);
}


.forgot-password-wrapper {
  text-align: right;
  margin-top: -0.5rem;
}

.forgot-password-link {
  color: var(--blue-accent);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: var(--blue-accent);
}


.btn-login {
  font-family: 'Silkscreen', monospace;
  padding: 0.9rem;
  background-color: var(--blue-accent);
  color: var(--minor-text-color);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-login:hover {
  background-color: --blue-accent;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}


.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--secondary-text-color);
  font-size: 0.85rem;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--accent-color);
}

.divider span {
  padding: 0 1rem;
}


.social-login-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-social {
  font-family: 'Silkscreen', monospace;
  padding: 0.85rem;
  background-color: var(--sidebar-bg);
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-social:hover {
  background-color: var(--accent-color);
  border-color: var(--secondary-color);
}


.signup-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--secondary-text-color);
  margin-top: 1.5rem;
}

.signup-link a {
  color: var(--blue-accent);
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  text-decoration: underline;
}


.login-info-section {
  background-color: #1a1c20;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.info-content {
  max-width: 400px;
  text-align: left;
}

.info-title {
  font-family: 'Audiowide', sans-serif;
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: normal;
}

.info-description {
  color: #b8bac1;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}


.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: 'Audiowide', sans-serif;
  font-size: 2rem;
  color: var(--text-color);
  font-weight: normal;
}

.stat-label {
  font-family: 'Roboto Mono', monospace;
  color: #8b8d94;
  font-size: 0.85rem;
}




@media (max-width: 768px) {
  .login-container {
    padding: 1rem;
  }

  .login-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .login-form-section {
    padding: 2rem 1.5rem;
  }

  .login-info-section {
    padding: 2rem 1.5rem;
    min-height: 400px;
  }

  .welcome-title {
    font-size: 1.75rem;
  }

  .info-title {
    font-size: 2rem;
  }

  .info-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}


@media (max-width: 480px) {
  .login-container {
    padding: 0.5rem;
  }

  .login-wrapper {
    border-radius: 12px;
    min-height: auto;
  }

  .login-form-section {
    padding: 1.5rem 1.25rem;
  }

  .login-info-section {
    padding: 1.5rem 1.25rem;
    min-height: 300px;
  }

  .welcome-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .welcome-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .login-form {
    gap: 1rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input {
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
  }

  .btn-login {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .social-login-buttons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .btn-social {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .info-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .signup-link {
    font-size: 0.8rem;
    margin-top: 1rem;
  }

  .divider {
    margin: 1rem 0;
    font-size: 0.8rem;
  }
}


@media (max-width: 360px) {
  .login-form-section {
    padding: 1.25rem 1rem;
  }

  .login-info-section {
    padding: 1.25rem 1rem;
  }

  .welcome-title {
    font-size: 1.35rem;
  }

  .form-group input {
    padding: 0.7rem 0.75rem;
    font-size: 0.8rem;
  }

  .password-input-wrapper input {
    padding-right: 2.75rem;
  }

  .toggle-password {
    right: 0.5rem;
    padding: 0.4rem;
  }

  .btn-login {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .btn-social {
    padding: 0.7rem;
    font-size: 0.75rem;
  }

  .info-title {
    font-size: 1.5rem;
  }

  .info-description {
    font-size: 0.85rem;
  }
}


@media (max-width: 768px) and (orientation: landscape) {
  .login-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .login-form-section,
  .login-info-section {
    padding: 1.5rem;
  }

  .login-container {
    padding: 1rem;
  }

  .welcome-title {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
  }

  .welcome-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .login-form {
    gap: 0.85rem;
  }

  .info-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .info-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}