
        body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          background-color: #f0f2f5;
          margin: 0;
          /* padding: 20px; */
        }
        .form-container {
          max-width: 700px;
          background: #fff;
          margin: 40px auto;
          padding: 30px;
          border-radius: 10px;
          box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        h2, h3 {
          text-align: center;
          color: #333;
          margin-bottom: 20px;
        }
        label {
          display: block;
          margin-top: 15px;
          font-weight: 600;
          color: #555;
        }
          input[type="text"], input[type="email"], textarea {
          width: 100%;
          padding: 10px;
          margin-top: 6px;
          border: 1px solid #ccc;
          border-radius: 6px;
          box-sizing: border-box;
          font-size: 14px;
          transition: 0.3s;
        }
        input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
          border-color: #007bff;
          outline: none;
          background-color: #eef6ff;
        }
        .checkbox-group {
          display: flex;
          flex-wrap: wrap;
          gap: 15px;
          margin-top: 10px;
        }
        .checkbox-group label {
          font-weight: normal;
          color: #444;
          display: flex;
          align-items: center;
          gap: 6px;
          font-size: 14px;
        }
        .submit-btn {
          display: block;
          width: 100%;
          margin-top: 25px;
          padding: 12px;
         // background-color: #007bff;
	background-color: #f8b916 !important;
          color: white;
          border: none;
          border-radius: 6px;
          font-size: 16px;
          cursor: pointer;
          transition: background-color 0.3s ease;
        }
        .submit-btn:hover {
          //  background-color: #0056b3;
	background-color: #f8b916 !important;
        }
        @media (max-width: 768px) {
          .checkbox-group {
            flex-direction: column;
            display: ruby;
          }
          .form-container {
            padding: 20px;
            margin: 15px;
          }

         
          .title{
		font-size: 25px !important;
          }
        }
	

 	.num-style {
    margin-top: 8px!important;
    margin-bottom: 8px!important;
    font-size: 14px!important;
}

@media (max-width: 576px) {
  .checkbox-group {
    flex-direction: column;
    display: ruby;
  }
}
     