  /* General modal body styling */
  .modal-body {
      padding: 2.5rem;
      /* Increased padding */
  }

  /* Improved social login buttons */
  .social-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      /* Add space below the icons */
  }

  .social-buttons .btn {
      background-color: #fff;
      border: 1px solid #ddd;
      color: #333;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      transition: all 0.2s ease-in-out;
  }

  .social-buttons .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .social-buttons .fa-facebook-f {
      color: #3b5998;
  }

  .social-buttons .fa-google {
      color: #dd4b39;
  }

  /* Form styling adjustments */
  .form-control {
      border-radius: 0.5rem;
      padding: 0.75rem 1rem;
  }

  .btn-primary {
      border-radius: 0.5rem;
  }

  /* Separator line style */
  .separator {
      display: flex;
      align-items: center;
      text-align: center;
      margin: 2rem 0;
      color: #aaa;
  }

  .separator::before,
  .separator::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #e0e0e0;
  }

  .separator:not(:empty)::before {
      margin-right: .5em;
  }

  .separator:not(:empty)::after {
      margin-left: .5em;
  }

  /* Other links */
  .modal-body a {
      text-decoration: none;
  }