.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  padding: 2rem;
  font-family: var(--font-inter), 'Inter', sans-serif;
  color: var(--text-main);
}

.authWrapper {
  display: flex;
  max-width: 1100px;
  width: 100%;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Info */
.infoSection {
  flex: 1;
  padding-right: 2rem;
}

.heading {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--text-header);
}

.heading span {
  display: block;
  background: linear-gradient(90deg, var(--accent-color) 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 450px;
}

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

.benefitItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.iconWrapper {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(232, 42, 54, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right Side - Card */
.authCard {
  background: var(--secondary-bg);
  border-radius: 24px;
  padding: 3rem;
  width: 480px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.cardHeader {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: var(--text-header);
}

.logoImage {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toggle Tabs */
.tabs {
  display: flex;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.35rem;
  margin-bottom: 2rem;
}

.tabBtn {
  flex: 1;
  padding: 0.75rem 0;
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.tabBtn.active {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(232, 42, 54, 0.3);
}

/* Form Styles */
.formGroup {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--primary-bg);
  color: var(--text-main);
}

.input:focus {
  border-color: var(--accent-color);
}

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

.submitBtn {
  width: 100%;
  background: var(--accent-color);
  color: #ffffff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  margin-top: 2rem;
}

.submitBtn:hover:not(:disabled) {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(232, 42, 54, 0.4);
}

.submitBtn:active:not(:disabled) {
  transform: scale(0.97);
  filter: brightness(0.95);
}

.submitBtn:disabled {
  background: var(--border-color);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.errorText {
  color: #ef4444;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

.successText {
  color: #10b981;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .authWrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .infoSection {
    padding-right: 0;
    text-align: center;
  }
  .description {
    margin: 0 auto 2.5rem auto;
  }
  .benefitsList {
    align-items: center;
  }
  .authCard {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
  }
}
