    body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            height: auto; 
            min-height: 100vh;
            background-color: #f4f4f9;
            background-image: url('background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            backdrop-filter: blur(3px);
            transition: background-color 0.3s, color 0.3s, background-image 0.3s;

            overflow-y: auto;
        }

        .background-shade {
            position: absolute;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            width: 100%;
            height: 100%;
        }


        body {
            background-color: rgba(0, 0, 0, 0.5);
        }
 
        .navbar {
            width: 100%;
            background-color: white;
            color: black;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding: 10px 20px;
            box-sizing: border-box;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1000;
        }
 
        .navbar img {
            height: 40px;
        }
 
        .navbar .title {
            font-size: 24px;
            font-weight: bold;
            margin-left: 20px;
            color: black;
            transition: color 0.3s;
        }
 
        .form-container {
            display: flex;
            flex-direction: column;
            z-index: 12;
            gap: 16px;
            width: 90%;
            max-width: 800px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-top: 80px;
            transition: background-color 0.3s, box-shadow 0.3s;
            overflow: auto;
            margin-bottom: 20px;
        }
 
        .form-grid {
            display: grid;
            gap: 20px;
        }
 
        .form-grid.row-1,
        .form-grid.row-2,
        .form-grid.row-4,
        .form-grid.row-5,
        .form-grid.row-6,
        .form-grid.row-3,
        .form-grid.row-8 {
            grid-template-columns: 1fr 1fr;
        }
 
      
        .form-grid.row-7 {
            grid-template-columns: 1fr;
        }
 
        .form-grid input,
        .form-grid select {
            padding: 12px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            box-sizing: border-box;
            margin-top: 8px;
            margin-bottom: 8px;
        }
 
        .form-grid input:focus,
        .form-grid select:focus {
            outline: none;
            border-color: #e21e3c;
            box-shadow: 0 0 3px rgba(226, 30, 60, 0.5);
        }
 
        .dark-mode {
            background-color: #121212;
            color: white;
        }
 
        .dark-mode .navbar {
            background-color: #333;
            color: white;
        }
 
        .dark-mode .navbar .title {
            color: white;
        }
 
        .dark-mode .form-container {
            background: #333;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
 
        .dark-mode .form-grid input,
        .dark-mode .form-grid select {
            border-color: #555;
            background-color: #444;
            color: white;
        }
 
        .dark-mode .form-grid input:focus,
        .dark-mode .form-grid select:focus {
            border-color: #e21e3c;
            box-shadow: 0 0 3px rgba(226, 30, 60, 0.5);
        }
  

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

  
  .form-grid > select{
    border-radius: 15px;
    color: gray;
    border-color: gray;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  
  .form-group {
            padding: 2px;   /* 10px */
            padding-left: 10px;
            padding-right: 10px;
            border: 1px solid gray;
            margin: 10px;
            border-radius: 15px;
            position: relative; /* Ensure label and input align properly */
        }

        .form-group > label {
            position: absolute;
            top: -5px; /* Lift label above input */
            left: 20px; /* Adjust padding */
            background-color: white;
            font-size: 12px;
            padding: 0 5px;
            color: gray;
            transition: 0.3s ease; /* Smooth movement for interactive labels */
        }

        .form-group > input {
            border: none !important;
            padding-left: 30px;
            height: 40px;
            border-radius: 10px;
            font-size: 16px;
            width: 100%;
        }

        input:focus {
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Focus effect for better UX */
        }

        input:focus + label {
            color: #007bff; /* Change label color on focus */
        }
        
        
        
        .form-row {
  display: flex;
}

.form-row .form-group {
  width: 50%;
}










    .form-container {
      width: 50%;
      background: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-bar {
      height: 10px;
      width: 100%;
      background-color: #e0e0e0;
      position: relative;
    }

    .progress {
      height: 100%;
      width: 0;
      background-color: #007bff;
      transition: width 0.5s ease-in-out;
    }

    .tabs {
      display: flex;
      background-color: #007bff;
      color: white;
    }

    .tab {
      flex: 1;
      text-align: center;
      padding: 10px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .tab:hover {
      background-color: #0056b3;
    }

    .tab.active {
      background-color: #0056b3;
    }

    .tab-content {
      display: none;
      padding: 20px;
      animation: fadeIn 0.5s;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    button {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button:hover {
      background-color: #0056b3;
    }
