   /* Body Styling */
    body {
      font-family: 'Arial', sans-serif;
      background-color: #f5f5f5;
      margin: 0;
      padding: 0;
    }

    /* Modal Overlay */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.3s ease;
    }

    /* Modal Content Box */
    .modal-content {
      background: #fff;
      border-radius: 8px;
      padding: 40px;
      width: 100%;
      max-width: 450px;
      position: relative;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Close Button */
    .close {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 25px;
      color: #aaa;
      cursor: pointer;
    }

    .close:hover {
      color: #333;
    }

    /* Modal Title */
    .form-title {
      font-size: 28px;
      font-weight: 600;
      color: #333;
      margin-bottom: 20px;
    }

    /* Form Input Group */
    .input-group {
      position: relative;
      margin-bottom: 20px;
    }

    .input-group i {
      position: absolute;
      top: 12px;
      left: 10px;
      color: #888;
    }

    .input-group input {
      width: 100%;
      padding: 12px 10px 12px 35px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 16px;
      background-color: #f9f9f9;
      transition: border 0.3s ease;
    }

    .input-group input:focus {
      border-color: #007bff;
      outline: none;
    }

    /* Button Styling */
    .btn {
      width: 100%;
      background-color: #007bff;
      color: #fff;
      padding: 12px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 5px;
      border: none;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #0056b3;
    }

    /* Links and Text Styling */
    .links {
      margin-top: 20px;
      text-align: center;
    }

    .links p {
      font-size: 14px;
      color: #888;
    }

    .links button {
      background: none;
      border: none;
      color: #007bff;
      font-size: 14px;
      cursor: pointer;
    }

    .links button:hover {
      text-decoration: underline;
    }

    .or {
      font-size: 16px;
      color: #666;
      margin: 20px 0;
      text-align: center;
    }

    /* Social Icons */
    .icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .icons i {
      font-size: 20px;
      color: #444;
      cursor: pointer;
    }

    .icons i:hover {
      color: #007bff;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
      .modal-content {
        padding: 20px;
      }

      .form-title {
        font-size: 24px;
      }

      .input-group input {
        font-size: 14px;
      }

      .btn {
        font-size: 14px;
      }
    }