/* Auth Pages (Sign In / Sign Up) Specific Styles */

body {
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1100px;
}

.main-header {
  background: rgba(11, 7, 30, 0.8);
  position: relative;
}

/* Auth Section */
.signup-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.signup-container {
  max-width: 480px;
  width: 100%;
}

.signup-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.signup-header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.signup-icon svg {
  width: 40px;
  height: 40px;
  color: var(--text-primary);
}

.signup-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.signup-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.signup-header a {
  color: var(--gradient-start);
  text-decoration: none;
  font-weight: 500;
}

.signup-header a:hover {
  text-decoration: underline;
}

/* Password Strength */
.password-strength {
  margin-top: 8px;
  display: none;
}

.password-strength.show {
  display: block;
}

.strength-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-fill.weak {
  width: 33%;
  background: var(--error-color);
}

.strength-fill.medium {
  width: 66%;
  background: #ffd551;
}

.strength-fill.strong {
  width: 100%;
  background: var(--success-color);
}

.strength-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .signup-card {
    padding: 35px 25px;
  }

  .signup-header h1 {
    font-size: 1.75rem;
  }

  .signup-section {
    padding: 40px 20px;
  }

  .modal-content {
    padding: 30px 25px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }
}
