.nvl-auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  min-height: 100vh;
}
.nvl-auth-container {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: var(--nvl-border-radius);
  box-shadow: var(--nvl-card-hover-shadow);
  overflow: hidden;
}
.nvl-auth-info {
  flex: 1;
  background: var(--nvl-info-bg);
  color: var(--nvl-info-text);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.nvl-auth-info-content {
  max-width: 300px;
  margin: 0 auto;
}
.nvl-auth-logo {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.nvl-auth-info h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--nvl-info-text);
}
.nvl-auth-info p {
  opacity: 0.9;
  margin-bottom: 2rem;
}
.nvl-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.nvl-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.nvl-auth-main {
  flex: 1;
  padding: 3rem;
}
.nvl-auth-tabs {
  display: flex;
  border: 1px solid var(--nvl-border-color);
  border-radius: var(--nvl-border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.nvl-tab-button {
  flex: 1;
  padding: 1rem;
  border: none;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s;
  color: #555;
}
.nvl-tab-button.active {
  background: #fff;
  color: var(--nvl-primary-color);
  border-bottom: 2px solid var(--nvl-primary-color);
}
.nvl-form-content {
  display: none;
}
.nvl-form-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.nvl-form-footer {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.nvl-form-footer a {
  color: var(--nvl-primary-color);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nvl-auth-container {
    flex-direction: column;
  }
  .nvl-auth-info,
  .nvl-auth-main {
    padding: 2rem;
  }
}
