.signup-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.signup-container {
  .signup-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    transition: transform 0.3s ease;
  }

  .signup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
  }

  .signup-header::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid #764ba2;
  }

  .signup-body {
    padding: 40px 30px;
  }

  .form-floating {
    margin-bottom: 20px;
  }

  .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
  }

  .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: white;
  }

  .form-control.is-valid {
    border-color: #28a745;
  }

  .form-control.is-invalid {
    border-color: #dc3545;
  }

  .form-floating > label {
    color: #6c757d;
    font-weight: 500;
  }

  .password-strength {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
  }

  .strength-weak {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
  }

  .strength-medium {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
  }

  .strength-strong {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
  }

  .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
  }

  .form-check-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
  }

  .form-check-label {
    font-size: 0.9rem;
    color: #495057;
  }

  .form-check-label a {
    color: #667eea;
    text-decoration: none;
  }

  .form-check-label a:hover {
    color: #764ba2;
    text-decoration: underline;
  }

  .btn-signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
  }

  .btn-signup:hover:not(:disabled) {
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
  }

  .btn-signup:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
  }

  .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
  }

  .divider span {
    background: white;
    padding: 0 20px;
    color: #6c757d;
    font-weight: 500;
  }

  .social-signup {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    font-size: 18px;
  }

  .btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-google:hover {
    border-color: #db4437;
    color: #db4437;
  }

  .btn-facebook:hover {
    border-color: #4267b2;
    color: #4267b2;
  }

  .btn-twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
  }

  .signin-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
  }

  .signin-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
  }

  .signin-link a:hover {
    color: #764ba2;
  }

  .validation-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 0.875rem;
  }

  .valid-feedback {
    color: #28a745;
  }

  .invalid-feedback {
    color: #dc3545;
  }

  .step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
  }

  .step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .step.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  }

  .step.completed {
    background: #28a745;
    color: white;
  }

  @media (max-width: 576px) {
    .signup-card {
      margin: 10px;
    }

    .signup-header {
      padding: 30px 20px 20px;
    }

    .signup-body {
      padding: 30px 20px;
    }
  }
}


/* Overrides */
 .nav-background {
   background: linear-gradient(135deg, rgb(var(--bs-primary-rgb)) 0%, rgb(var(--bs-secondary-rgb)) 100%);
 }