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

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


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

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


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


.btn-signup {
  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-signup: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-signup-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;
}


.signup-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) {
  .signup-container {
    padding: 1rem;
  }

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

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

  .signup-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) {
  .signup-container {
    padding: 0.5rem;
  }

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

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

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

  .signup-form {
    gap: 1rem;
  }

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

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

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

  .social-signup-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) {
  .signup-form-section {
    padding: 1.25rem 1rem;
  }

  .signup-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-signup {
    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) {
  .signup-wrapper {
    grid-template-columns: 1fr 1fr;
  }

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

  .signup-container {
    padding: 1rem;
  }

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

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

  .signup-form {
    gap: 0.85rem;
  }

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

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

  .stats {
    gap: 1.25rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: var(--sidebar-bg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #D4AF37;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal-content h2 {
  font-family: 'Audiowide', sans-serif;
  color: #FFF;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--secondary-text-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

.modal-content strong {
  color: #D4AF37;
}

.btn-modal-close {
  font-family: 'Silkscreen', monospace;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #121212;
  border: none;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}