    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
    }
    .left-panel {
      background-color: #f8f9fa;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 30px;
      height: 100vh;
    }
    .right-panel {
      background: url("{% static 'images/User-Bg.jpg' %}") no-repeat center center fixed;
      background-size: cover;
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .user-type-button {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 140px;
      height: 140px;
      border-radius: 8px;
      text-align: center;
      color: #ffffff;
      font-size: 16px; /* Larger font size for labels */
      padding: 10px;
      margin: 5px; /* Small margins */
      border: 1px solid #ddd; /* Light border */
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
   
    .user-type-button:hover {
      transform: scale(1.05);
      box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    }
    .user-type-professional {
      background-color: #d3e5ff;
      color: #1e40af;
    }
    .user-type-organizational {
      background-color: #e7ffec;
      color: #14532d;
    }
    .user-type-instructor {
      background-color: #fde2e8;
      color: #b91c1c;
    }
    .user-type-institutional {
      background-color: #fff6dc;
      color: #7c2d12;
    }
    .branding-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .branding-logo img {
      height: 50px;
      margin-bottom: 15px;
    }
    .branding-logo h1 {
      font-size: 24px;
      font-weight: bold;
    }
    .icon{
      font-size: 50px !important;
      margin-bottom: 10px;
    }
