
    body {
      background-color: #f0f2f5;
      font-family: 'Segoe UI', sans-serif;
    }

    .form-container {
      max-width: 900px;
      margin: 60px auto;
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-wrap: wrap;
    }

    .form-img {
      flex: 1;   
      min-width: 300px;
      background: url('../../assets/images/itr.webp')no-repeat center center;
      background-size: cover;
      object-fit: cover;
    }

 


    .register-form {
      flex: 1;
      padding: 40px 30px;
    }

    .logo-container {
      text-align: center;
      margin-bottom: 20px;
    }

    .logo-container img {
      max-width: 140px;
    }

    .form-control:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

    .btn-custom {
      background-color: #0d6efd;
      color: white;
      font-weight: 500;
      border-radius: 8px;
    }

    .btn-custom:hover {
      background-color: #0b5ed7;
    }
   
    @media (max-width: 768px) {
      .form-container {
        flex-direction: column;
      }

      .form-img {
        min-height: 200px;
      }
    }


/* ----dashboard css start---- */

  
    .sidebar {
      min-height: 100vh;
      background-color: #343a40;
      padding-top: 20px;
    }
    .sidebar a {
      color: #fff;
      text-decoration: none;
      display: block;
      padding: 15px;
    }
    .sidebar a:hover {
      background-color: #495057;
    }
    .sidebar .collapse a {
      padding-left: 30px;
      font-size: 14px;
    }
    .card {
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .header {
      background-color: #0d6efd;
      color: white;
    }
/* ----dashboard css start---- */
  