.navigation-links {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 2rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.recommender-link {
    background-color: #4CAF50;
    color: white;
}

.website-link {
    background-color: #2196F3;
    color: white;
}

.text-center {
    text-align: center;
}

.registration-benefits {
    max-width: 600px;
    margin: 2rem auto;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.benefits-list i {
    margin-right: 0.5rem;
    color: #4CAF50;
}

.auth-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.password-hints {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}
  .loading-spinner {
      display: none;  /* Force hide by default */
      text-align: center;
      margin-top: 1rem;
  }

  .loading-spinner.show {
      display: block;
  }
.magic-link-section {
    margin-top: 2rem;
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.magic-link-form {
    max-width: 400px;
    margin: 1rem auto;
}

.magic-link-form .form-group {
    margin-bottom: 1rem;
}

.magic-link-form input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.magic-link-form button {
    width: 100%;
    padding: 0.5rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.magic-link-form button:hover {
    background-color: #45a049;
}

.submit-btn:disabled,
.magic-link-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.error {
    color: #dc3545;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

.form-control {
    height: 38px;  /* Standard Bootstrap form-control height */
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}
  input[type="submit"].btn-primary {
      width: auto !important;
      min-width: 120px;
      max-width: 150px;
      padding: 0.5rem 1.5rem;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
  }

  input[type="submit"].btn-primary:hover {
      background-color: #45a049;
  }

  .form-check {
      text-align: center;
      margin: 1rem 0;
  }

  .submit-btn {
      display: block;
      margin: 0 auto;
  }
