.container-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Space between columns and rows */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: span 2; /* Full width for larger screens */
}

.label-input100 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    /* font-family: 'Josefin Sans', serif; */
}

.wrap-input100 {
    display: flex;
    flex-direction: column;
}

/* Responsive design for mobile screens */
@media (max-width: 768px) {
    .container-grid {
        grid-template-columns: 1fr; /* Single column for smaller screens */
    }

    .form-group-full {
        grid-column: span 1; /* Single column on mobile */
    }
}


/* Skill Dropdown */
.dropdown {
    position: relative;
    font-size: 14px;
    color: #333;
    z-index: 1000;
    font-family: 'Poppins-Regular';
    font-size: 15px;
  
    .dropdown-list {
      padding: 12px;
      background: #fff;
      position: absolute;
      top: 30px;
      left: 2px;
      right: 2px;
      box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
      transform-origin: 50% 0;
      transform: scale(1, 0);
      transition: transform .15s ease-in-out .15s;
      max-height: 66vh;
      overflow-y: scroll;
    }
    
    .dropdown-option {
      display: block;
      padding: 8px 12px;
      opacity: 0;
      transition: opacity .15s ease-in-out;
    }
    
    .dropdown-label {
      display: block;
      height: 30px;
      background: #fff;
      border: 1px solid #ccc;
      padding: 6px 12px;
      line-height: 1;
      cursor: pointer;
      
      &:before {
        content: '▼';
        float: right;
      }
    }
    
    &.on {
     .dropdown-list {
        transform: scale(1, 1);
        transition-delay: 0s;
        
        .dropdown-option {
          opacity: 1;
          transition-delay: .2s;
        }
      }
      
      .dropdown-label:before {
        content: '▲';
      }
    }
    
    [type="checkbox"] {
      position: relative;
      top: -1px;
      margin-right: 4px;
    }
  }
